mirror of
https://github.com/darlinghq/darling.git
synced 2024-11-23 12:19:43 +00:00
e68d9249e7
* VideoToolbox * QTKit * AudioUnit * CoreMediaIO
8 lines
128 B
Bash
Executable File
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
|