8 lines
187 B
Bash
Executable File
8 lines
187 B
Bash
Executable File
#/bin/sh
|
|
|
|
for D in `find ~/LetsTalk/projects/ -maxdepth 1 -mindepth 1 -printf '%f\n' -type d`
|
|
do
|
|
echo "Fixing permissions of: ${D}"
|
|
lt-dd project:fixpermissions -n -p "${D}"
|
|
done
|