GeekHub 一个简单实现的Linux守护进程脚本(Daemon) 2021年9月17日2021年9月17日 by gooneyryan #!/bin/bash while true; do process=`ps aux | grep 'Your_Program_Name'| grep -v grep` #检查程序是否启动 if [ ! "$process" ]; then Start_Your_Program_Here #这里启动你的程序 fi sleep 5 done 文章导航 通过shell脚本ssh远程登录设备并执行命令rsync:Linux下scp的更优替代品