Guest User

Untitled

a guest
Feb 18th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $ somecommand | tee one two three
  2.  
  3. $ somecommand | sudo tee /root/somefile >/dev/null
  4.  
  5. $ sudo somecommand >/root/somefile
  6.  
  7. $ tee -a /home/*/.profile <<'END_NEWPATH'
  8. PATH="$PATH:/opt/bin"
  9. END_NEWPATH
  10.  
  11. time doas box-build.sh 2>&1 | tee build.out | grep '^=*>'
Add Comment
Please, Sign In to add comment