Skip to content

Instantly share code, notes, and snippets.

@vklogin
Created April 4, 2017 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vklogin/e089e49aa7ebe06f3befa2d31d9fa897 to your computer and use it in GitHub Desktop.
Save vklogin/e089e49aa7ebe06f3befa2d31d9fa897 to your computer and use it in GitHub Desktop.
Tee & Grep output
$ cat ~/tmp/sh
while true
do
echo "100"
echo "abc"
echo "abc"
echo "200"
done
$ bash ~/tmp/sh 2>&1 | tee ~/tmp/out | grep -v abc
100
200
100
200
100
200
100
200
100
200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment