Skip to content

Instantly share code, notes, and snippets.

@emiliodallatorre
Created June 20, 2020 09:10
Show Gist options
  • Save emiliodallatorre/d8aa5c6e194abc696bdfd5836e828770 to your computer and use it in GitHub Desktop.
Save emiliodallatorre/d8aa5c6e194abc696bdfd5836e828770 to your computer and use it in GitHub Desktop.
Uno script per pulire recursivamente i progetti in Flutter nella cartella GitHub.
for f in $(ls -d */);
do
echo "Entro in $f."
cd "$f"
flutter clean
cd ..
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment