大连Linux/Unix高端就业、认证培训的领导者。
标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
TCP/IP三次握手与四次挥手 | 734 | 0 | 0 | 2013-04-16 | |
TCP/IP状态 | 633 | 0 | 0 | 2013-04-16 | |
/sys目录说明 | 600 | 0 | 0 | 2013-04-16 | |
收据包的封装过程 | 481 | 0 | 0 | 2013-04-16 | |
培训和自学的区别 | 529 | 0 | 0 | 2013-04-16 | |
RHCA系统架构师课程内容 | 739 | 0 | 0 | 2013-04-16 | |
RedHat官方文档:RAID阵列 | 2608 | 2 | 6 | 2013-04-16 | |
RedHat官方文档:udev硬件设备管理机制 | 1803 | 0 | 1 | 2013-04-15 | |
灵活使用watch命令动态监控进程的资源占用情况 | 637 | 0 | 0 | 2013-04-15 | |
udev规则 | 575 | 0 | 0 | 2013-04-09 |
w6308661392013-03-26 17:04
gltnsrice:尹伊明:
a:
[root@localhost ~]# w | sed 's/\([....]\{4,\}\) .*/\1/'
[root@localhost ~]# w | cut -d' ' -f1 | sed 's/\(.....*\)/\1/g'
[root@localhost ~]# who | sed 's/\([^ ]\{4,\}\) .*/\1/'
[root@localhost ~]# who | grep '^[^ ]\{4,\}'
b:
[root@localhost home]# cat passwd | cut -d: -f3 | grep '[0-9]\{3,\}'
[root@localhost home]# cat passwd | cut -d: -f1,3 | grep '[0-9]\{3,\}'
d:
[root@localhost home]# ls -l | sed 's/ */*/g' | cut -d* -f9,5 | sort -n
gltnsrice2013-03-16 12:07
尹伊明:
a:
[root@localhost ~]# w | sed 's/\([....]\{4,\}\) .*/\1/'
[root@localhost ~]# w | cut -d' ' -f1 | sed 's/\(.....*\)/\1/g'
[root@localhost ~]# who | sed 's/\([^ ]\{4,\}\) .*/\1/'
[root@localhost ~]# who | grep '^[^ ]\{4,\}'
b:
[root@localhost home]# cat passwd | cut -d: -f3 | grep '[0-9]\{3,\}'
[root@localhost home]# cat passwd | cut -d: -f1,3 | grep '[0-9]\{3,\}'
d:
[root@localhost home]# ls -l | sed 's/ */*/g' | cut -d* -f9,5 | sort -n