多項選擇題為了能夠使用ls程序列出目錄的內(nèi)容,并能夠使用cd進入該目錄,操作者需要有對該目錄的訪問權限是()。

A、讀
B、寫
C、執(zhí)行
D、遍歷
E、遞歸


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題在linux系統(tǒng)中,查找/home/目錄下文件名以test開頭的文件,以下正確的命令是()。

A、find /home -name test*
B、find -name test* /home
C、find test* /home
D、find -n test* /home

2.單項選擇題在linux系統(tǒng)中,查找/tmp目錄下正規(guī)文件,其權限為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

3.多項選擇題在linux系統(tǒng)中,下述正則表達式結(jié)果相同的有()

A、[ 0 1 2 3 4 5 ]
B、[ 0-5 ]
C、[ 0 1-5 ]
D、[ 0-2 3-5]
E、[01][2-5]

5.單項選擇題查找/etc下文件內(nèi)容中以shell開頭或以shell結(jié)尾,且與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/*