You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
230 B
Bash

#!/bin/bash
dir='/media/hoard/hoard/'
fileshare_group='library-users'
fileshare_owner='emily'
chown -R $fileshare_owner:$fileshare_group "$dir"
find "$dir" -type d -exec chmod 755 {} \;
find "$dir" -type f -exec chmod 644 {} \;