Is there a way to recursively find all files owned by a user and change them to another user/group in Gnu/Linux?
I assume there must be some magic one liner but my command line wizardry skills are not up to that :)
Thanks!
Is there a way to recursively find all files owned by a user and change them to another user/group in Gnu/Linux?
I assume there must be some magic one liner but my command line wizardry skills are not up to that :)
Thanks!
Use the
find
command with the-user
option. Something like:find / -user john
will eventually turn up all files owned by user "john".
If you want to change their ownership (I would run the
find
without execution to make sure you have the list you want), then something like:find / -user john -exec chown harry {} \;
will do it.
This is late, but today I stumbled across this question because my
rsync
doesn't have the--usermap
option.My
chown
(v. chown (GNU coreutils) 8.13) offers a built-in recurse (-R
) and a--from
option so your (and my) problem could've also been solved usingMore specifically I'm migrating a server from OpenSuse to debian, and the user and group of apache2 differ between the distributions. In OpenSuse its user
wwwrun (id:30)
and groupwww (id:8)
, in debianwww-data (id: 33)
for both. After I copied the files usingI used
on the target (debian) machine.
Note:
rsync version 3.1.0 protocol version 31
has the above mentioned--usermap
so if I had that I could've done all three steps with one command on the source machine: