Help for this page

Select Code to Download


  1. or download this
    #!/bin/sh
    if [ "$(uname)" = "Linux" ] ; then
    ...
        perl="/nfs/aix/bin/perl"
    fi
    exec "$perl" /nfs/commom/perl/the-script.pl "$@"
    
  2. or download this
    #!/bin/sh
    if [ "$(uname)" = "Linux" ] ; then
    ...
    use strict;
    use warnings;
    print "Hello World!\n";