Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    # Now split apart on the quotes and commas.
    my @args = split(/", "/,$cmdline);
    print "Args are: **",join("**, **",@args),"**\n";