Help for this page
$script = 'foo.pl'; # or $script = <STDIN>; chomp $script; $path = '/some/path/'; $script = $path . $script;
$script = '/some/path'; $script .= 'foo.pl'; # or $script .= <STDIN>; chomp $script;