简介
该用户还未填写简介
擅长的技术栈
未填写擅长的技术栈
可提供的服务
暂无可提供的服务
linux脚本练习(一):判断进程是否存在
vim monitorProcess.sh#!/bin/bashif [ !"$1" ]thenecho "please input the process key as a argc"exitelseps -elf| grep $1 | grep -v grep > /dev/nullif [$? -ne...
到底了