Comment on Linux command line techniques: IO redirection and pipingparentComments−ax0n15ysudo cat ~/something.txt | grep 'hello' | sudo tee ~someoneelse/result.txtor use "| sudo tee -a" (append) in place of >>
Comments
sudo cat ~/something.txt | grep 'hello' | sudo tee ~someoneelse/result.txt
or use "| sudo tee -a" (append) in place of >>