Guest User

Untitled

a guest
Jan 21st, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. 2>&1 > output.log
  2.  
  3. 2>&1 | tee output.log
  4.  
  5. (echo hello | tee xyzzy.txt) >plugh.txt
  6.  
  7. 2>&1 > output.log
  8.  
  9. 2>&1 | tee output.log
  10.  
  11. > output.log 2>&1
  12.  
  13. utility 2>&1 >output.log
  14.  
  15. utility 2>&1 | tee output.log
  16.  
  17. STDIN - Standard Input - Writes from an input device to the program
  18. STDOUT - Standard Output - Writes program output to screen unless specified otherwise.
  19. STDERR - Standard Error Output - Writes error messages. Also printed to the screen unless specified otherwise.
Add Comment
Please, Sign In to add comment