mirror of
https://codeberg.org/diginaut/dotfiles.git
synced 2026-02-04 13:30:26 +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 {} \;
|
|
|