mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
7 lines
199 B
Bash
Executable File
7 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
|
|
/usr/bin/sudo IFS=$'\n'
|
|
for sysPermissions in $( /usr/bin/find /System/Volumes/Data/System -type d -perm -2 | /usr/bin/grep -v "Drop Box" );
|
|
do
|
|
/bin/chmod -R o-w "$sysPermissions"
|
|
done |