如何知道在Linux命令中运行的终端的进程?


Answers:


3

如果你想要shell的PID,那么它就是$$变量,假设你的shell是bash或类似的。因此你可以使用

$ ls /proc/$$

这将列出正在运行的shell的该文件夹的内容,或者只是

$ echo $$

在屏幕上看到PID。


你能解释一下这是怎么回事吗?
techfun 2014年

在shell中,当你编写$variable它时,它将替换该变量的值。有一个名为的特殊变量$$,它是shell本身的PID。
Kevin Panko 2014年

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.