Re: Copying all of the files that are owned by the user.



On Mar 30, 2:12 pm, "medo...@xxxxxxxxx" <medo...@xxxxxxxxx> wrote:
On Mar 30, 11:22 am, Tom Gur <gur....@xxxxxxxxx> wrote:

Hi,

How do I copy all of the files that are owned by the user ?
i.e copy all of the files in /tmp that are owned by the user who
performs the command/

Thanks,
Tom Gur

Hello ,
Also you can do the following

find / -name $(username) |xrags -i cp -r {} $(destination)

Thanks !
.