找出正在运行的python进程名称与位置

找出运行进程的数量

[root@datanode2 ~]#   ps -A  |grep  python3|wc  -l
14 个
[root@datanode2 ~]#  ps -axjf  |grep  python3

43054 44889 44888 43054 pts/8    44888 S+       0   0:00  |       \_ grep --color=auto python3
 2340 21775 21775  2340 pts/3    21775 Sl+      0   4:13  |   |   \_ python3 360_mul_algorithm2.py
21775 21779 21775  2340 pts/3    21775 S+       0   0:00  |   |       \_ /root/anaconda3/envs/squad/bin/python3 -c from multiprocessing.semaphore_tracker import main;main(4)
 

你可能感兴趣的:(linux,&,Bash,python)