Skip to content

Instantly share code, notes, and snippets.

@kaosf
Created October 31, 2014 03:19
Show Gist options
  • Select an option

  • Save kaosf/51a33f4ac60e063573d0 to your computer and use it in GitHub Desktop.

Select an option

Save kaosf/51a33f4ac60e063573d0 to your computer and use it in GitHub Desktop.
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