为了停止嵌入式Linux系统中的活动,我有以下shell脚本(由busybox解释):
#!/bin/sh
pkill usefulp_program
swapoff /home/.swapfile
umount -l /home
sleep 3 # While I can't find a way to sync, sleep
如果我去掉
sleep
行,脚本将立即返回,甚至不等待umount
(由于某些原因,它会延迟卸载)。你知道在完成脚本之前我如何等待这三个操作全部完成吗?诉诸于任意的sleep
并不是一个好的解决方案。另外,有没有任何关于我为什么不能没有
umount
的提示? 最佳答案
您需要等待终止的进程。根据你的评论…
wait <pid>
…不起作用!所以,可以循环ala:
while ps -p <pid> > /dev/null; do sleep 1; done
在执行swapoff和umount之前等待终止的进程。
关于linux - 将Shell脚本与内核操作同步,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5574332/