Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
一度にファイルにデータを挿入するにはどうすればよいですか?
以下のようなデータがあるかどうかを検討してください。
echo "hi" >> file1 echo "hi" >> file2
同じ "hi" を file1 と file2 に同時にリダイレクトするにはどうすればよいですか?
$ echo hi | tee -a file1 file2
マンページを参照してteeください。
tee