在shell中,可以使用pgrep命令来获取进程的进程号。
pgrep
使用示例:
#!/bin/bash # 获取进程名为"process_name"的进程的进程号 pid=$(pgrep process_name) echo "进程号: $pid"
将process_name替换为要获取进程号的进程名,然后运行脚本即可获取进程号。
process_name