大连Linux/Unix高端就业、认证培训的领导者。
标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
第四章第3题b | 1081 | 7 | 1 | 2013-03-15 | |
第四章第3题a | 623 | 6 | 1 | 2013-03-15 | |
正则表达式习题2 | 378 | 1 | 1 | 2013-03-12 | |
【推荐】 Mysql root密码忘记解决办法 | 793 | 0 | 0 | 2013-03-12 | |
正则表达式---习题1 | 465 | 0 | 1 | 2013-03-10 | |
RHEL6下的Yum软件仓库的配置方法 | 2098 | 1 | 1 | 2012-04-25 | |
shell如何自动输入密码 | 983 | 1 | 1 | 2010-11-18 | |
SHELL编程-文件读取 | 1351 | 1 | 2 | 2010-11-18 | |
与子书 | 702 | 0 | 0 | 2010-05-14 | |
9-6答案 | 715 | 0 | 1 | 2010-04-10 | |
试验:Linux-iscsitarget做软磁盘阵列 | 1254 | 0 | 0 | 2009-09-24 | |
linux iSCSI target/initiator配置 | 1461 | 0 | 0 | 2009-09-24 | |
判断、循环等语法总结 | 730 | 0 | 1 | 2009-07-11 | |
read命令循环读文本文件的方法 | 1102 | 0 | 1 | 2009-07-11 | |
DHCP配置试验 | 1159 | 0 | 0 | 2009-06-19 | |
红帽RHEL5U3平台实现pppoe接入记账认证服务器的配置文档 | 1030 | 0 | 0 | 2009-06-11 | |
基于用户级别的samba服务器配置 | 1039 | 0 | 0 | 2009-06-11 | |
关于RHCE考试的30个主要方向 | 708 | 0 | 0 | 2009-06-11 | |
vsftpd-2.0.5源代码安装和PAM使用 | 1658 | 0 | 0 | 2009-06-11 | |
念奴娇.·赤壁怀古---苏轼 | 1996 | 0 | 0 | 2008-08-26 |
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