nomad/fixperms.sh
2024-01-04 01:42:05 +00:00

9 lines
169 B
Bash

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