2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-19 03:25:44 +00:00

Show tee some love, for clarity and consistency

This commit is contained in:
terminalforlife 2020-02-02 19:57:22 +00:00
parent 4c5344e70c
commit e6da32c2b1

View File

@ -1,16 +1,15 @@
# To tee stdout to a file: # Display `ls` output to the user, but also write it to the given file.
ls | tee outfile.txt ls | tee outfile.txt
# As above, but amend the data; previous file's data remains in-tact.
# To tee stdout and append to a file:
ls | tee -a outfile.txt ls | tee -a outfile.txt
# tee would take the output of the first command in the pipeline and copy it # Pipe the standard output of a given command into `tee`, which then displays
# to standard output (the terminal) while also making copies of it in the files one, two and three: # it to the user and sending the data to files `one`, `two`, and `three`.
somecommand | tee one two three [COMMAND] | tee one two three
# write 3 to /proc/sys/vm/drop_caches (with root rights) # Workaround to output data to a file, with root privileges.
echo 3 | sudo tee /proc/sys/vm/drop_caches echo 3 | sudo tee /proc/sys/vm/drop_caches
# in Vim: # Pipe the current Vim buffer to a shell process, which in this case is `tee`.
# The structure :w !cmd means "write the current buffer piped through command". # This is especially useful as a shortcut added to `.vimrc` or similar.
:w !sudo tee % :w !sudo tee %