博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux command
阅读量:6453 次
发布时间:2019-06-23

本文共 694 字,大约阅读时间需要 2 分钟。

hot3.png

tail -n 1500 log.log | more 

tail -f -n 1500 log.log

ps -ef |grep processname |awk '{print $2}'|xargs kill -9

ps -ef |grep processname |grep -v grep | awk '{print $2}'| xargs echo
Explain :  ps -ef  --> ps list processes . -e show all processes , not just those belonging to the user . -f show processes in full format . 
           grep processname  --> find lines containing   processname . 
           grep -v grep --> filter out the grep process . 
           awk 'print $2' --> tokenize  a line by blank space  .  $2  take the second word .   reference : http://blog.51cto.com/loofeer/775267
           xargs --> construct the input param as a list . 
           kill -9  --> kill all the processes by input pid 

转载于:https://my.oschina.net/yixinnemo/blog/1830069

你可能感兴趣的文章
简单的导出表格和将表格下载到桌面上。
查看>>
《ArcGIS Engine+C#实例开发教程》第一讲桌面GIS应用程序框架的建立
查看>>
递归查询上一级
查看>>
JAVA - 大数类详解
查看>>
查询指定名称的文件
查看>>
批处理文件
查看>>
1.每次按一下pushbutton控件,切换图片?
查看>>
Python 嵌套列表解析
查看>>
[GXOI/GZOI2019]旧词——树链剖分+线段树
查看>>
android 补间动画的实现
查看>>
2017年广东省ACM省赛(GDCPC-2017)总结
查看>>
第十届蓝桥杯B组C++题目详解和题型总结
查看>>
树的存储结构2 - 数据结构和算法42
查看>>
函数的嵌套调用
查看>>
OC中使用 static 、 extern、 const使用
查看>>
简单理解函数回调——同步回调与异步回调
查看>>
POJ 1007
查看>>
Android 多个Activity 跳转及传参
查看>>
中文文本预处理流程(带你分析每一步)
查看>>
anroid 广播
查看>>