Created
June 18, 2015 10:38
-
-
Save Sciss/d22e2ae49ca3ee387e73 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # cf. http://superuser.com/questions/91935/how-to-chmod-all-directories-except-files-recursively | |
| find /media/hhrutz/MnemoN/WRITE/LeereNull150618_1 -type d -exec chmod 555 {} + | |
| find /media/hhrutz/MnemoN/WRITE/LeereNull150618_1 -type f -exec chmod 444 {} + |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment