/ Published in: Bash
find all files owned by xxx and change them to be owned by yyy
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
# find all files owned by ‘501’ and change them to be owned by wee me: sudo find / -user 501 -print0 | xargs -0 chown madra