- or download this
0 'gup.pl ; cd /and/updates'
1 'ck.pl; cd /and/release/runtime'
- or download this
my ($run_cmd, $chdir_cmd) = split(';',$run[$element],2);
- or download this
DB<3> x $chdir_cmd
0 ' cd /and/updates'
- or download this
$chdir_cmd =~ s/'/"/g;
- or download this
sub ch_dir
{
...
chdir($cmd) || die $!;
}
- or download this
my $ cmd = "cd /and/updates";
ch_dir($cmd);