Files
scripts/permissionreset
2025-12-12 14:38:14 +08:00

3 lines
87 B
Bash
Executable File

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