Skip to content

Instantly share code, notes, and snippets.

@sgong-pdftron
Created June 11, 2019 23:13
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 sgong-pdftron/8a31c110d6e7de01d553a38fb7295240 to your computer and use it in GitHub Desktop.
Save sgong-pdftron/8a31c110d6e7de01d553a38fb7295240 to your computer and use it in GitHub Desktop.
#!/bin/sh
for SAMPLE in *
do
if [ -d $SAMPLE ]
then
if [ -e $SAMPLE/CS ]
then
cd $SAMPLE/CS
echo "$SAMPLE running"
dotnet run
cd ../..
echo "$SAMPLE finished. Press enter to continue..."
read -p "$*" a
fi
fi
done
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment