美文网首页编程地带
RHCSA题解(十四) - 查询搜索指定的文件

RHCSA题解(十四) - 查询搜索指定的文件

作者: MA木易YA | 来源:发表于2019-08-16 08:55 被阅读1次

    1. 找出所有所有者是 ira 的文件,并把他们拷贝到/root/findresults 目录。

    mkdir /root/findresults
    find / -type f -user ira -exec cp -a {} /root/findresults/ \;
    

    2. 把/usr/share/dict/words文件中所有包含rato字符串的行找到,并将这些行按原始文件中顺序存放到/root/wordlist中并不能包含空行

    cat /usr/share/dict/words | grep rato > /root/wordlist
    

    相关文章

      网友评论

        本文标题:RHCSA题解(十四) - 查询搜索指定的文件

        本文链接:https://www.haomeiwen.com/subject/bhdyjctx.html