• 2022-07-28
    以下哪一个命令()能用来查找/home目录及其子目录中包含'hello'字符串的5天以前访问过的文件,并将它们删除,删除前需要得到用户的确认,但是删除过程不需要任何提示。
    A: find
    /home –name “hello” –atime +5 –ok rm
    –f {} \;
    B: find
    /home –name “hello” –atime -5 –ok rm
    –f {} \;
    C: find
    /home –name “hello” –atime +5 –ok rm ;
    D: find
    /home –name “hello” –atime -5 –ok rm
    –f \;