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.
gnu parallel によって生成されたタスクがタイムアウトした場合に、アクション (管理者に電子メールを送信するなど) をトリガーする方法はありますか?
--joblog を使用します。Exitval=-1 はタイムアウトを意味します。
seq 100000 | parallel --joblog jl.log echo >> foo & # Parse jl.log and do something with that tail -n+1 -f jl.log | parallel --header : echo {Exitval}