mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-06 20:35:11 +01:00
5 lines
87 B
Bash
Executable File
5 lines
87 B
Bash
Executable File
#!/bin/bash
|
|
find . -type d -exec chmod 755 {} \;
|
|
find . -type f -exec chmod 644 {} \;
|
|
|