题目内容

以下哪条命令搜索用户的.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

查看答案
更多问题

以下哪条命令将在当前目录中搜索最近24小时内被修改过的文件?

A. find ./ -type f -mtime -1
B. find ./ -type f -mtime -24
C. find ./ -type f -mtime +1
D. find ./ type -f time 24
E. find ./ -type
F. -mtime 1

以下哪条命令可以搜索一条命令的二进制文件和man手册的位置?

A. whatis
B. find
C. whereis
D. ls

以下哪条命令可以搜索当前目录中所有文件名以DB开头的文件?

A. locate "DB*"
B. find ./ -name "DB*"
C. whereis "DB*"
D. find "DB*"

以下哪个find命令的选项允许find命令跟随符号链接?

A. -S
B. -H
C. -P
D. -L

答案查题题库