如何退出 tail -f 并恢复脚本
How to exit tail -f and resume script
我有一个简单的脚本,它设置日志记录,在日志文件上运行 tail -f
,然后在我退出 tail
后执行一些清理。基本上是这样的
echo 'monitoring started'
tail -f /var/log/some.log
echo 'never gets here'
问题是,按 Ctrl+C 退出 tail
也会中断脚本执行,因此不会调用清理。有没有办法 'properly' 退出 tail
并恢复脚本调用?我找到了一些基于保存PID并通过超时将其杀死的解决方案,但这不是我想要的,我可能需要监控几分钟或几小时,所以我想要一个手动切换。
你可以这样做
echo "monitoring started"
tail -f /var/log/some.log & #execute tail in background
read -sn 1 #wait for user input
kill %1 #kill the first background progress, i.e. tail
echo "Is reached"
我有一个简单的脚本,它设置日志记录,在日志文件上运行 tail -f
,然后在我退出 tail
后执行一些清理。基本上是这样的
echo 'monitoring started'
tail -f /var/log/some.log
echo 'never gets here'
问题是,按 Ctrl+C 退出 tail
也会中断脚本执行,因此不会调用清理。有没有办法 'properly' 退出 tail
并恢复脚本调用?我找到了一些基于保存PID并通过超时将其杀死的解决方案,但这不是我想要的,我可能需要监控几分钟或几小时,所以我想要一个手动切换。
你可以这样做
echo "monitoring started"
tail -f /var/log/some.log & #execute tail in background
read -sn 1 #wait for user input
kill %1 #kill the first background progress, i.e. tail
echo "Is reached"