/ Published in: Bash
find all files owned by xxx and change them to be owned by yyy
Expand |
Embed | Plain Text
# find all files owned by ‘501’ and change them to be owned by wee me: sudo find / -user 501 -print0 | xargs -0 chown madra
You need to login to post a comment.
