You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
273 B
14 lines
273 B
3 years ago
|
#!/bin/bash
|
||
|
|
||
|
# This script calls all other scripts to re-create the figures for the paper
|
||
|
|
||
|
mkdir fig
|
||
|
for job in 5024292 4296426 7488914 ; do
|
||
|
./scripts/plot-single-job.py $job "fig/job-"
|
||
|
done
|
||
|
|
||
|
for file in fig/*.pdf ; do
|
||
|
pdfcrop $file output.pdf
|
||
|
mv output.pdf $file
|
||
|
done
|