1、显示当前系统上root、fedora或user1用户的默认shell;#!/bin/bash
foruserinrootfedorauser1
do
id$user&>/dev/null
if[$?-eq0]
then
cat/etc/passwd|grep^$user|cut-d:-f7
fi
done
//输出:
//下面是或的输出
/bin/bash
#!/bin/bash
foruserinrootmysql
do
id$user&..
分类:
其他好文 时间:
2016-09-04 17:53:04
阅读次数:
228
1、显示当前系统上root、fedora或user1用户的默认shell;答:[root@mageeduCT7~]#egrep‘^(root|user1)\>‘/etc/passwd|cut-d:-f7
/bin/bash
/bin/bash2、找出/etc/rc.d/init.d/functions文件中某单词后面跟一组小括号的行,形如:hello();答:[root@mageeduCT7~]#grep‘\<[[..
分类:
系统相关 时间:
2016-09-04 17:51:27
阅读次数:
286
1、显示当前系统上root、fedora或user1用户的默认shell;#useraddfedora#useradduser1#grep-E"^(root|fedora|user1)\>"/etc/passwd|cut-d:-f1,7(注意是使用扩展正则表达式)^:行首|:或者():将一个或多个字符捆绑在一起,当作一个整体进行处理cut-d分隔符-fN,M:指定分隔..
分类:
其他好文 时间:
2016-09-04 17:48:12
阅读次数:
193
1、显示当前系统上root、fedora或user1用户的默认shell;#grep--color-E"^(root|fedora|user1).*‘/etc/passwd|cut-d:-f1,72、找出/etc/rc.d/init.d/functions文件中某单词后面跟一组小括号的行,形如:hello();grep--color-E"[[:alnum:]]+\(\)"/etc/rc.d/init.d/functionsgrep..
分类:
其他好文 时间:
2016-09-04 17:47:10
阅读次数:
197
1、显示当前系统上root、fedora或user1用户的默认shell;答:需要找到3个字符串,需要用到“或”命令,所以使用egrep。找到后cut再次筛选出我们需要显示的用户默认的shell。2、找出/etc/rc.d/init.d/functions文件中某单词后面跟一组小括号的行,形如:hello();答:3、使用ech..
分类:
编程语言 时间:
2016-09-04 00:18:51
阅读次数:
351
Protecting the Flowers Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 6484 Accepted: 2595 Description Farmer John went to cut some wood an ...
分类:
其他好文 时间:
2016-09-03 15:00:57
阅读次数:
153
第五周作业1、显示当前系统上root、fedora或user1用户的默认shell;[root@STCO6~]#grep-E‘^(root|fedora|user1)\>‘/etc/passwd|cut-d:-f1,7
root:/bin/bash
fedora:/bin/bash
user1:/bin/bash2、找出/etc/rc.d/init.d/functions文件中某单词后面跟一组小括号的行,形如:hel..
分类:
其他好文 时间:
2016-09-03 07:31:17
阅读次数:
158
文本处理命令在Linux的使用过程中也是很基础的知识,我来总结一下linux文本处理命令的使用。基础命令:cat/more/less/grep/head/tail/wc/uniq/cut/sort/join/pastetr/tee/split/spell/diff/printf/1.cat连接文件并显示内容-n对输出的文本进行编号-b对输出的文本进行编号,但是..
分类:
系统相关 时间:
2016-09-02 23:32:25
阅读次数:
309
1、显示当前系统上root、fedora或user1用户的默认shell;[root@C7-1~]#useraddfedora#新建用户fedora
[root@C7-1~]#useradduser1#新建用户user1
[root@C7-1~]#egrep‘^(root|fedora|user1)\>‘/etc/passwd|cut-d:-f1,7#由于(root|fedora|user1)是扩展表达式,所以要使用egrep..
分类:
其他好文 时间:
2016-09-02 16:07:52
阅读次数:
173
//截取字符串function cut(cutelement, cutlength) { var cutelement = $(cutelement); $.each(cutelement, function (i, item) { if (item.innerText.length > cutle ...
分类:
Web程序 时间:
2016-09-02 11:33:26
阅读次数:
137