Help for this page

Select Code to Download


  1. or download this
        perl -lpe 'substr $_, 0, 9, ""' file
    
        perl -lpe '$_ = substr $_, 9'   file
    
  2. or download this
        # Edited in-place
        perl -i     -lpe 'substr $_, 0, 9, ""' file
    
        # Edited in-place with back-up
        perl -i.bak -lpe 'substr $_, 0, 9, ""' file