相关考题
-
单项选择题
在linux系统中,查找/home/目录下文件名以test开头的文件,以下正确的命令是()。
A、find /home -name test*
B、find -name test* /home
C、find test* /home
D、find -n test* /home -
单项选择题
在linux系统中,查找/tmp目录下正规文件,其权限为644的文件,下列命令中正确的是()。
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、[ 0 1-5 ]
D、[ 0-2 3-5]
E、[01][2-5]
