如何找到一个用户拥有的所有文件并将它们复制到 RHEL 8 中的另一个目录?
How to find all file owned by one user and copy them to another directory in RHEL 8?
就像我想找到“user1”拥有的所有文件并将这些文件复制到另一个文件夹“/root/found”。这在 redhat 8 中可行吗?
像这样使用find
:
find /path/to/source/dir -user 'user1' -exec cp {} /root/found/ \;
就像我想找到“user1”拥有的所有文件并将这些文件复制到另一个文件夹“/root/found”。这在 redhat 8 中可行吗?
像这样使用find
:
find /path/to/source/dir -user 'user1' -exec cp {} /root/found/ \;