Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
就像我想找到“user1”拥有的所有文件并将这些文件复制到另一个文件夹“/root/found”。这在redhat 8中可能吗?
find像这样使用:
find
find /path/to/source/dir -user 'user1' -exec cp {} /root/found/ \;