comparison scripts/run_pipeline.sh @ 167:1f5937e9e530

More moves - transformations into data_generation, added "deep" folder
author Dumitru Erhan <dumitru.erhan@gmail.com>
date Fri, 26 Feb 2010 14:15:38 -0500
parents transformations/run_pipeline.sh@fdb0e0870fb4
children 992ca8035a4d
comparison
equal deleted inserted replaced
166:17ae5a1a4dd1 167:1f5937e9e530
1 #!/bin/bash
2
3 # This is one _ugly_ hack, but I couldn't figure out how
4 # to cleanly pass command line options to the script if
5 # invoking using the "gimp --batch < script.py" syntax
6
7 # Basically I create a temp file, put the args into it,
8 # then the script gets the filename and reads back the
9 # args
10
11 export PIPELINE_ARGS_TMPFILE=`mktemp`
12
13 for arg in "$@"
14 do
15 echo $arg >> $PIPELINE_ARGS_TMPFILE
16 done
17
18 gimp -i --batch-interpreter python-fu-eval --batch - < pipeline.py
19
20