从pts / 0切换到tty1或tty2


-2

我的朋友做了一些在tty1上运行的Python脚本。如下面的ps -ef命令所示:

root      1671     1  0 11:42 tty1     00:00:00 /sbin/getty 38400 console
root      1673     1  0 11:42 tty2     00:00:00 /sbin/getty 38400 tty2

我只想看看Python脚本做什么,或者是否有任何方法可以检查正在运行的确切python脚本的源代码。

Answers:


1

您的ps -ef输出实际上没有显示任何Python脚本;它显示的只是标准的Linux登录提示程序(getty)。如果Python程序实际上正在运行,则通常显示为python /path/to/the_script.py,这时您可以在文本编辑器中打开相同的路径。

另一方面,如果您有未知命令,则可以使用whichtype查看其后面的文件(可能是Python脚本或其他内容)。

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.