Skip to content

Instantly share code, notes, and snippets.

@nitriques
Created March 6, 2016 18:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nitriques/17974f33e71476e6c55e to your computer and use it in GitHub Desktop.
Save nitriques/17974f33e71476e6c55e to your computer and use it in GitHub Desktop.
#!/bin/sh
for D in ./*; do
if [ -d "${D}" ]; then
cd "${D}"
echo "${D}"
git unpushed
cd ..
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment