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.
grep の結果を端末とファイルに表示しようとしています。私が思いついた解決策は、それを 2 回実行することですが、これは明らかに効率の問題を引き起こします。
grep -n "$SEARCH_TERM" "$i" grep -n "$SEARCH_TERM" "$i" >> /file.txt
1 回の検索で両方に印刷できるタグはありますか?
ありがとう
お探しのプログラムは「tee」です。
grep -n "$SEARCH_TERM" "$i" | tee -a /file.txt