I would like to use the $var variable in lib path.
my $var = "/home/usr/bibfile;"
use lib "$var/lib/";
However when I do this it throws an error.
I'd like to use use lib "$var/lib/";
instead of use lib "/home/usr/bibfile/lib/";
.
How can I assign a variable, so that it can be used in the setting of lib modules?