Commit | Line | Data |
---|---|---|
83a13103 | 1 | #!/bin/sh |
4d376294 | 2 | # Usage: ./run.sh file[no_suffix] P H |
83a13103 | 3 | |
4d376294 | 4 | ./ipynb_generator.py $1.gj - P=$2 H=$3 |
83a13103 | 5 | |
83a13103 BA |
6 | jupyter-nbconvert \ |
7 | --ExecutePreprocessor.kernel_name='ir' \ | |
8 | --ExecutePreprocessor.timeout=1800 \ | |
4d376294 BA |
9 | --execute $1.ipynb \ |
10 | --to notebook --output $1.out.ipynb | |
11 | # --to html --output=$1.html |