#!/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