Help for this page

Select Code to Download


  1. or download this
    #!/bin/sh
    blah=/tmp/test
    balh3=/xyx/zzz
    
  2. or download this
    #!/bin/sh
    source myshell-script.sh
    ...do something...
    
  3. or download this
    #!/usr/bin/perl
    ..what to do here...
    
  4. or download this
    open FILE ..;
    undef $/;
    $x =<FILE>;
    %hash = split /=/, (split /\n/, $x);
    close FILE ..;