nomad/fixperms.sh
2024-02-19 00:25:08 +00:00

9 lines
165 B
Bash

#!/bin/bash
sudo chown -R root:nomad ./
sudo find . -type d -exec chmod 775 {} \;
sudo find . -type f -exec chmod 664 {} \;
echo "use sudo and distro finds you"