Help for this page

Select Code to Download


  1. or download this
    perl -e "print qq/Hello world!\n/;"
    
  2. or download this
    perl -n -e "print qq/$.:\t$_\n/;" textfile.txt
    
  3. or download this
    while ( <> ) {
        ..........  # Your code goes here.
        print $_;
    }
    
  4. or download this
    perl -pe "s/\bperl\b/Perl/g;" textfile.txt
    
  5. or download this
    perl -pe "s/\bperl\b/Perl/g;" textfile.txt >temptext.txt
    
  6. or download this
    perl -pi.bak -e "s/\bperl\b/Perl/g" infile.txt