First page Back Continue Last page Overview

 

Redirecting Input

 
  • Redirect standard input with <

  • Some commands only operate on standard input

    • tr doesn't accept filenames as arguments - it requires its input to be redirected from somewhere
    • tr 'A-Z' 'a-z' < .bash_profile
      • This command will translate the uppercase characters in .bash_profile to lowercase