status.sh 248 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 #!/system/bin/sh cd `dirname $0` root_path=`pwd` process_name="payload" process_info=`ps -A | grep -v grep | grep "$process_name"` if [ ${#process_info} -eq 0 ]; then echo "$process_name not running" else echo "$process_name running" fi