linuxsort命令的使用详解
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
获得目录下文件大小的顺序
ls -al | sort -k5 -rn //-k5从第5列开始显示-k来指定列数 -rn sort默认的排序方式是升序,如果想改成降序,就加个-r就搞定了。就要使用-n选项,来告诉sort,“要以数值来排序”!
获得当前系统中运行的最占内存的前10个程序
ps aux | sort -k6 -rn | head -n10 从第6列显示内存
看看你最常使用的前十个shell命令
history | sort -k4 | awk '{print $4}' | uniq -c | sort -k1 -nr | head -n10
<span style= "line-height:1.5; font-size:14px" ><strong>分析access.log获得访问前10位的ip地址</strong></span> |
4 |
5 | awk '{print $1}' access.log |sort|uniq -c|sort -nr|head -10 |
找出程序运行的端口
netstat -ap | grep ssh
找出运行在指定端口的进程
netstat -an | grep
':80'
查看连接某服务端口最多的的IP地址
netstat -nat | grep
"192.168.1.15:22"
|awk
'{print $5}'
|awk -F:
'{print $1}'
|sort|uniq -c|sort -nr|head -20
列出所有端口 netstat -a
netstat -a | more
如果只是显示最近登录的5个帐号
#last -n 5 | awk '{print $1}'
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献5条内容
所有评论(0)