查看系统中所有用户的当前目录的Shell。
因为proc目录下的cwd不能查看连接到哪里,所以使用pwdx命令。
- #! /bin/bash
-
for p in `ps -ef | grep -v grep | awk '{print $2}'`
-
do
-
if [[ $p -eq null ]]
-
then
-
continue
-
fi
-
-
echo `pwdx $p`
-
done
在unmount时,如果其他用户在这个mount点下操作则unmount操作失败,可以用这个脚本查看那个进程的
当前目录在mount点下。然后杀掉这个进程就可以unmount了。
阅读(3973) | 评论(0) | 转发(0) |