编写脚本自动杀进程及运行jar包

#!/bin/bash
kill -9 $(netstat -nlp | grep "803" | awk {print $9} | awk -F "/" {print $1})
java -jar jar包名称 > /home/hadoop/log.txt &