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
Plaintext
10 lines
230 B
Plaintext
|
6 years ago
|
#!/bin/bash
|
||
|
7 years ago
|
|
||
|
6 years ago
|
dir='/media/hoard/hoard/'
|
||
|
|
fileshare_group='library-users'
|
||
|
|
fileshare_owner='emily'
|
||
|
7 years ago
|
|
||
|
6 years ago
|
chown -R $fileshare_owner:$fileshare_group "$dir"
|
||
|
|
find "$dir" -type d -exec chmod 755 {} \;
|
||
|
|
find "$dir" -type f -exec chmod 644 {} \;
|