in reply to Appconfig module question

"...using the correct module..."

I don't know. But perhaps you can abuse another? Some untested stuff:

#!/usr/bin/env perl use strict; use warnings; use Config::Tiny; use feature qw(say); my $config = Config::Tiny->read(q(eatalian.cfg)); my $var = $config->{_}->{VAR}; my $amb = $config->{_}->{AMB}; my $dirske = qq($var$amb); say $dirske; my $script = qq($dirske/script.sh); say $script; __END__

Best regards, Karl

«The Crux of the Biscuit is the Apostrophe»

perl -MCrypt::CBC -E 'say Crypt::CBC->new(-key=>'kgb',-cipher=>"Blowfish")->decrypt_hex($ENV{KARL});'Help