在linux 系统中,你想要搜索/home 下的所有的目录文件,下面哪个命令是正确的?
A: find /home -type d
B: find -type d /home
C: find -name d /home
D: find -name l /home
A: find /home -type d
B: find -type d /home
C: find -name d /home
D: find -name l /home
举一反三
- 以下哪条命令搜索用户的.bash_history文件以确定该用户是否使用过sudo命令? A: find /home -name "bash_history" | grep sudo B: find /home -name ".bash_history" | xargs grep sudo C: find /home/.bash_history | xargs grep sudo D: find /home -type history | xargs grep sudo
- 以下查找文件的命令中哪个是错误? A: find –name “myfile” B: find –size 100k C: find /home –name “myfile” D: find –type myfile
- 在linux系统中,查找/home/目录下文件名以test开头的文件,以下正确的命令是()。 A: find/home-nametest* B: find-nametest*/home C: findtest*/home D: find-ntest*/home
- 以下哪一个命令()能用来查找/home目录及其子目录中包含'hello'字符串的5天以前访问过的文件,并将它们删除,删除前需要得到用户的确认,但是删除过程不需要任何提示。 A: find<br/>/home –name “hello” –atime +5 –ok rm<br/>–f {} \; B: find<br/>/home –name “hello” –atime -5 –ok rm<br/>–f {} \; C: find<br/>/home –name “hello” –atime +5 –ok rm ; D: find<br/>/home –name “hello” –atime -5 –ok rm<br/>–f \;
- 在linux系统中,查找/home/目录下文件名以test开头的文件,以下正确的命令是()。 A: Afind /home -name test* B: Bfind -name test* /home C: Cfind test* /home D: Dfind -n test* /home