首页 > 其他 > 详细

sort

时间:2019-02-03 11:28:14      阅读:173      评论:0      收藏:0      [点我收藏+]

[root@localhost ~]# sort -t ‘:‘ -k 3 -n /etc/passwd

[root@localhost /]# du -sh * | sort -n

[root@localhost /]# du -sh * | sort -nr

sort -M 以月份排序Jan、Feb、Mar、Apr、May、Jun、Jul、Aug、Sep、Oct、Nov、Dec

[root@localhost /]# netstat -lnut

[root@localhost /]# lsof -i:111

[root@localhost /]# lsof -i:111

[root@localhost /]# mount -av

[root@localhost ~]# sleep 300&

[1] 4535

[1]+  运行中               sleep 300 &

[root@localhost ~]# jobs -l

[1]+  4535 运行中               sleep 300 &

[root@localhost ~]# ps --forest

   PID TTY          TIME CMD

  4304 pts/1    00:00:00 bash

  4535 pts/1    00:00:00  \_ sleep

  4708 pts/1    00:00:00  \_ ps

[root@localhost ~]# ps -ef | grep 4535 | grep -v grep

root       4535   4304  0 00:51 pts/1    00:00:00 sleep 300

 

[root@localhost ~]# which ps

/usr/bin/ps

[root@localhost ~]# type -a ps

ps 是 /usr/bin/ps

[root@localhost ~]# !232 

[root@localhost ~]# alias -p    查看当前用的别名

[root@localhost ~]# echo `date +%Y-%m-%d--%H:%M:%S`.log

[root@localhost ~]# rpm -qa | sort | less

 

sort

原文:https://www.cnblogs.com/charon2/p/10349791.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!