Help for this page

Select Code to Download


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