Help for this page

Select Code to Download


  1. or download this
    perl -ne 'print uc' foo_input_file
    # or
    perl -pe '$_ = uc' foo_input_file
    # or even ...
    perl -pe 's/(.+)/\U$1\E/' foo_input_file
    
  2. or download this
    # capitalize words
    perl -pe 's/\b(.)/\U$1\E/g' foo_input_file
    # ...