dotfiles/bin/bin/fixallperm.sh
2020-01-22 17:47:34 +01:00

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