Skip to content

Instantly share code, notes, and snippets.

@NHQ
Forked from gkatsev/triforce.sh
Created May 29, 2014 23:49
Show Gist options
  • Save NHQ/a40ab2b1586b95fd4276 to your computer and use it in GitHub Desktop.
Save NHQ/a40ab2b1586b95fd4276 to your computer and use it in GitHub Desktop.
for i in *; do
if [ -d "$i" ]; then
cd $i;
if [ -f "package.json" ]; then
zelda ../;
fi;
cd ..;
fi;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment