Skip to content

Instantly share code, notes, and snippets.

@kikoseijo
Created March 28, 2017 22:39
Show Gist options
  • Save kikoseijo/893c6a40045746b3ed6cccd0dd33281e to your computer and use it in GitHub Desktop.
Save kikoseijo/893c6a40045746b3ed6cccd0dd33281e to your computer and use it in GitHub Desktop.
#!/bin/bash
search_dir=$(pwd)
writable_dirs=$(find $search_dir -type d -perm 0777)
for dir in $writable_dirs
do
#echo $dir
find $dir -type f -name '*.php'
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment