* Fixes conditional in "if" statement * searches for files/groups not owned by "abc" * works on symbolic links (chown -h)pull/4/head
parent
b2086f5140
commit
ab2a1b42dc
@ -1,6 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
|
||||
if [ -f /config/Library/Application Support]; then
|
||||
find "/config/Library/Application Support" -user plex -exec chown abc:abc {} \;
|
||||
fi
|
||||
if [ -f "/config/Library/Application Support" ]; then
|
||||
find "/config/Library/Application Support" \! -user abc -exec chown -h abc:abc {} \;
|
||||
find "/config/Library/Application Support" \! -group abc -exec chown -h abc:abc {} \;
|
||||
fi
|
||||
|
Loading…
Reference in new issue