1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

tee 

Last updated at Posted at 2020-04-06

#欲張りなコマンド 
コマンドの結果を標準出力したいし、ファイルにも出力
したいと思った時に使えるコマンド

######実行例

echo "どっちにも表示できる" | tee test1.txt

標準出力エラーも保存して、画面表示したときに使うやつ

ping host8888 2>&1 | tee pinglog.txt
 ping: unknown host host8888
cat pinglog.txt 
 ping: unknown host host1234

-aをつけると上書きされないで追加できる。

tee [オプション]ファイル名
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?