单项选择题
A、find /tmp -f -perm 644 B、find -type f -perm 644 /tmp C、find -type f -perm 644 D、find /tmp -type f -perm 644
在linux系统中,下述正则表达式结果相同的有()A、[ 0 1 2 3 4 5 ]B、[ 0-5 ]C、[ ...
多项选择题在linux系统中,下述正则表达式结果相同的有()
A、[ 0 1 2 3 4 5 ] B、[ 0-5 ] C、[ 0 1-5 ] D、[ 0-2 3-5] E、[01][2-5]
在linux系统中,与正则表达式[^0-9]匹配的表达式有()。A、0B、aC、*D、%
单项选择题在linux系统中,与正则表达式[^0-9]匹配的表达式有()。
A、0 B、a C、* D、%
查找/etc下文件内容中以shell开头或以shell结尾,且与shell大小写无关的文件及其相应行(不包括错...
单项选择题查找/etc下文件内容中以shell开头或以shell结尾,且与shell大小写无关的文件及其相应行(不包括错误信息和父目录),以下命令正确的是()。
A、grep –s -I -E、“^shell|shell$”/etc/* B、grep –s -E、“^shell|shell$”/etc/* C、grep –s -i “^shell|shell$”/etc/* D、grep -I -E、“^shell|shell$”/etc/*