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