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.
尝试挂载设备并获取挂载命令的 pid。
cmd="/bin/mount /dev/sda1 /mnt" 操作系统(cmd)
cmd="/bin/mount /dev/sda1 /mnt"
操作系统(cmd)
现在如何获取mount命令的pid?我的系统上有很多可用的已安装设备,例如 ps | grep mount 无法正常工作。
ps | grep mount
正如评论所暗示的,我不确定获取挂载 pid 有多大用处,但如果您使用subprocess模块,您可以轻松获取 pid。
>>> import subprocess >>> p = subprocess.Popen("ls", shell=True) >>> p.pid 4136 >>>
可能重复: 用 <<'ESQ' 帮助我理解这个 Perl 语