Skip to content

Instantly share code, notes, and snippets.

@BlackDante
Created March 25, 2019 09:33
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save BlackDante/6440baf05587761f742d5bfc66cd9224 to your computer and use it in GitHub Desktop.
bash loop
#!/usr/bin/env bash
cd ./tests
for i in $(ls -d */);
do
cd ${i};
echo "------------------------------------------"
echo "Testing " ${i}
echo "------------------------------------------"
dotnet test;
cd ..
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment