1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 20:35:11 +01:00
Files
dotfiles/bin/fixpermissions
Michiel Scholten 6dc77fcac4 Import
2014-05-05 20:59:47 +02:00

5 lines
87 B
Bash
Executable File

#!/bin/bash
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;