Skip to content

Instantly share code, notes, and snippets.

View sgong-pdftron's full-sized avatar

sgong-pdftron sgong-pdftron

View GitHub Profile
@echo off
for /D %%s in (*) do (
if exist %%s\CS (
cd %%s\CS
echo %%s starting...
call dotnet run
cd ..\..
echo %%s finished.
pause
)
#!/bin/sh
for SAMPLE in *
do
if [ -d $SAMPLE ]
then
if [ -e $SAMPLE/CS ]
then
cd $SAMPLE/CS
echo "$SAMPLE running"