后台启动进程
nohup 脚本 > /dev/null 2>&1 &
根据进程名杀进程
ps -a | grep node_exporter | awk '{print $1}' | xargs -i kill {}