Created
March 18, 2009 13:43
-
-
Save kogakure/81124 to your computer and use it in GitHub Desktop.
Bash: Typolight – Set rights and delete sample files
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/bash | |
| find . -type f -exec chmod 664 {} \; | |
| find . -type d -exec chmod 775 {} \; | |
| rm templates/example_website.sql | |
| rm -rf tl_files/music_academy/ | |
| chmod 777 . print.css basic.css news.xml system/config/localconfig.php system/tmp/ system/html/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment