Created
October 31, 2014 03:19
-
-
Save kaosf/51a33f4ac60e063573d0 to your computer and use it in GitHub Desktop.
Joruri CMS 2nd commit https://github.com/kaosf/joruri-cms-2.0.2/commit/7677ac44f5fb2f7ad7b5b35ce212ad487df75687 generator
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
| ll -dF $PWD/**/* > files-directories.txt | |
| cat files-directories.txt | grep '^d' -v > files.txt | |
| cat files.txt | grep '^-rwx' > executable-files.txt | |
| cat executable-files.txt | awk '{print $9}' > executable-filenames.txt | |
| cat executable-filenames.txt | sed 's/\*//' -i executable-filenames.txt | |
| cat executable-filenames.txt | xargs chmod -x | |
| chmod +x script/rails | |
| rm files-directories.txt files.txt executable-files.txt executable-filenames.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment