- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalltests
More file actions
Latest commit
executable file
·15 lines (13 loc) · 451 Bytes
/
Copy pathalltests
File metadata and controls
executable file
·15 lines (13 loc) · 451 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#for dir in python-reference/*
#do
# for file in "${dir}/"*.py
# do
# racket ~/python/python-main.rkt --python-path /course/cs173/python/Python-3.2.3/python --interp < "${file}"
# done
#done
#for file in python-reference/bool/*.py
for file in python-reference/$1/*.py
do
echo "-----------------------${file}------------------------"
racket ~/python/python-main.rkt --python-path /course/cs173/python/Python-3.2.3/python --interp < "${file}"
done