Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

tee | 標準入力を全てのファイルに書きこむ

概要

標準入力を全てのファイルに書きこみます。

tee オプション ファイル名

サンプルコード

$ls
new_test.txt  old_test.txt  test.txt
$cat *test.txt
new_test
old_test
test
$echo "hogehoge" | tee -a *test.txt
hogehoge
$cat *test.txt
new_test
hogehoge
old_test
hogehoge
test
hogehoge