在“n”之后中断循环分钟
我正在使用 dd 命令复制文件:
dd if=in.dat of=out.dat bs=1kb
假设输入文件非常大,完整的复制需要 5 分钟才能完成。 我想在 1 分钟后中断 dd
命令。
如何在shell脚本中实现这一点?
I am copying a file using dd
command:
dd if=in.dat of=out.dat bs=1kb
Suppose the input file is very big and the complete copy will take say 5 min to complete.
I want to break dd
command after 1 min.
How to achieve this in shell script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
Try this:
60 秒后通过
$!
终止最近的后台进程Kill the most recently backgrounded process via
$!
after 60 seconds