Help for this page

Select Code to Download


  1. or download this
    # Your code:
    print "\nWorking on ".$dir."\n\n";
    
  2. or download this
    # print a list
    print "\nWorking on ", $dir, "\n\n";
    # Interpolate
    print "\nWorking on $dir\n\n";
    
  3. or download this
    print q{Select an option: 
    
    1) Create new XSPFs
    2) Delete all XSPFs in dir and create new ones
    };