Help for this page

Select Code to Download


  1. or download this
    grep -v "^'" file.asp > uncommented_file.asp
    
  2. or download this
    perl -ne 'print unless (/^\x27/)' file.asp > uncommented_file.asp
    
  3. or download this
    open( INPUT, "<", $ARGV[0] ) or die "$ARGV[0]: $!\n";
    my @code_lines = grep !/^\x27/, <INPUT>;