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.
私がプログラムを持っている場合、たとえばtest.sh、画面出力を監視し、出力の特定のポイントに達したときにプログラムを強制終了してデバッグする必要がある場合があります。特に詳細な出力では、この出力をファイルだけでなく端末にも表示すると便利です。
test.sh
コードとデバッグ ツールの両方でこれを行う最善の方法は何ですか?
出力は、次の行でパイプできます。
./test.sh | tee -a Log.log
これにより、画面に出力され、出力が test.sh から Log.log に書き込まれます。