Return to Snippet

Revision: 14612
at June 7, 2009 17:34 by stiobhart


Initial Code
# find all files owned by ‘501’ and change them to be owned by wee me:

sudo find / -user 501 -print0 | xargs -0 chown madra

Initial URL


Initial Description
find all files owned by xxx and change them to be owned by yyy

Initial Title
*nix - find and change

Initial Tags
command, server, unix

Initial Language
Bash