Sometimes you are logged into a system on different terminals and you want to figure it out what process id you have on a specific terminal. The commands to do so are very simple:
shell$ tty /dev/pts/1 # i'm on pts/1 meaning remote shell$ ps -p $$ PID TTY TIME CMD 10044 pts/1 00:00:00 bash # $$ means current process pid
0 comments:
Post a Comment