1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-07 01:15:10 +01:00
This commit is contained in:
Michiel Scholten
2014-05-05 20:59:47 +02:00
parent 8bf3aa5a47
commit 6dc77fcac4
6 changed files with 100 additions and 0 deletions

4
bin/fixpermissions Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/bash
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;