Skip to content

Commit f1e8544

Browse files
committed
run.bash script
1 parent 8c1b35e commit f1e8544

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

chapter6/solutions/sierpinski.png

169 Bytes
Loading

run.bash

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
python3 -c "import sys; print(sys.version)" > versions.log
6+
python3 -c "import sympy; print(sympy.__version__)" >> versions.log
7+
python3 -c "import matplotlib; print(matplotlib.__version__)" >> versions.log
8+
9+
for dir in 'chapter1' 'chapter2' 'chapter3' 'chapter4' 'chapter5' 'chapter6' 'chapter7'; do
10+
pushd $dir/solutions
11+
./run.bash
12+
popd
13+
done

0 commit comments

Comments
 (0)