Help for this page
#!/usr/bin/perl use warnings; ... say "Running $ARGV[0] with the following arguments:"; say for @ARGV[1 .. $#ARGV];
$ 1229381.pl --file file.1 --dir dir.2 -- some-job x y z Running some-job with the following arguments: x y z