可以使用以下命令来判断进程是否存在:
ps aux | grep <进程名>
pgrep <进程名>
if pgrep <进程名>; then echo "进程存在" else echo "进程不存在" fi