题:找出全部用户 ira 拥有的文件,而且把它们拷贝到/root/findfiles 目录中html
已建立用户 :spa
# 建立目录 mkdir /root/findfiles # find搜索全部用户包含ira 文件的 复制到 findfiles目录下 find / -user ira -exec cp -a {} /root/findfiles \;
更多详情:http://www.javashuo.com/article/p-yudmvlve-mo.htmlcode