Help for this page

Select Code to Download


  1. or download this
    perl -ne 'print if / (\S) \1 \1$/' data.txt
    
  2. or download this
    perl -ne 'print if / (\S) \1 \1$/' data.txt > second.file
    
  3. or download this
    perl -e 'print "hello world\n"'
    
  4. or download this
    perl -ne 'print "hello world. Look at this: $_"' data.txt