darling/tools/fix-source-perm.sh
Andrew Hyatt e68d9249e7
Some framework stubs
* VideoToolbox
* QTKit
* AudioUnit
* CoreMediaIO
2019-07-20 20:00:35 -04:00

8 lines
128 B
Bash
Executable File

#!/bin/bash
for folder in "$@"
do
find $folder -type d -exec chmod 775 {} \;
find $folder -type f -exec chmod 664 {} \;
done