Created
June 20, 2020 09:10
-
-
Save emiliodallatorre/d8aa5c6e194abc696bdfd5836e828770 to your computer and use it in GitHub Desktop.
Uno script per pulire recursivamente i progetti in Flutter nella cartella GitHub.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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