一些经常使用的linux命令

批量kill
ps -ef|grep 54690|grep -v grep|grep -v pullstream.sh|cut -c 9-15|xargs kill -9stream

查找文件
find . -name 'TestController*'grep

查看文件5到10行
cat -n a.txt|tail -n +5|head -n 6文件