码迷,mamicode.com
首页 > 系统相关 > 详细

Linux常用命令

时间:2019-12-25 20:39:14      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:top   文件   gre   12px   linu   ss命令   ESS   linux常用命令   pid   

1、日志查看

# 查看log.log前200行
cat log.log | head -n 200

# 查看log.log后200行
cat log.log | tail -n 200

# 返回log.log中包含train的所有行
cat log.log | grep "train"

# 返回log.log中包含train的所有行
grep -i "train" log.log

#显示文件的前100行
head -n 100 log.log

#显示最后100行数据
tail -n 100 log.log

#跟踪log.log 的文件的增长情况
tail -f log.log

2、进程查看

ps -aux | grep 进程名
ps -aux | grep PID
ps -ef | grep 进程名
ps -ef | grep PID

top -p PID

3、grep 命令

https://www.runoob.com/linux/linux-comm-grep.html

4、less命令、more命令

https://www.runoob.com/linux/linux-comm-less.html

https://www.runoob.com/linux/linux-comm-more.html

5、diff命令(用于比较文件的差异)

https://www.runoob.com/linux/linux-comm-diff.html

6、curl命令

curl -X POST "http://localhost:8080/xxx/xx" -d ‘{"json":"json"}‘ -H "Content-type:application/json" 

Linux常用命令

标签:top   文件   gre   12px   linu   ss命令   ESS   linux常用命令   pid   

原文地址:https://www.cnblogs.com/Joy-Hu/p/12098517.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!