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.
bundle installバックグラウンドプロセスとして実行し、その出力を端末から隠したい。現在私はこれをします
bundle install
bundle > /dev/null &
しかし、同じ結果を達成するためのより良い、より短い方法があるのでしょうか?
その出力(およびそれが成功するか失敗するか)に本当に関心がない場合は、プロセスのstderrをリダイレクトすることもできます。
bundle >/dev/null 2>/dev/null &