Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl -l
    while (<>) {
      chomp;
      print '"'.quotemeta.'"' if /^[\$\w]+$/;
    }
    
  2. or download this
    #! /usr/bin/perl -ln
    print '"'.quotemeta.'"' if /^[\$\w]+$/;