Commit | Line | Data |
---|---|---|
83a13103 BA |
1 | #!/bin/sh |
2 | # Usage: ./run.sh P H | |
3 | ||
41e7dc8f | 4 | ./ipynb_generator.py report.gj - P=$1 H=$2 |
83a13103 | 5 | |
41e7dc8f BA |
6 | #htmlfile=report_P$1_H$2.html |
7 | nbfile=report_P$1_H$2.ipynb | |
83a13103 BA |
8 | jupyter-nbconvert \ |
9 | --ExecutePreprocessor.kernel_name='ir' \ | |
10 | --ExecutePreprocessor.timeout=1800 \ | |
41e7dc8f BA |
11 | --execute report.ipynb \ |
12 | --to notebook --output $nbfile | |
0e789b3a | 13 | # --to html --output=$htmlfile |