0
I currently have a workflow which relies on several bash commands sequentially in the OSX terminal. It is basically a process which starts with a file x.csv
, it does an operation on it and generates another file y.dat
. Then uses y.dat
as input for another command line app and produces the output z.png
.
I want to write a script to automate the procedure with a script that takes in x
and produces z
directly. I don't know how to do it, or if to use AppleScript or bash and how.
Thanks
Please expand your answer and explain what exactly you did. Having a link is nice but it doesn't really tell us how you solved your problem. – slhck – 2012-12-18T14:26:54.473
You are just linking to a short cookbook for a simple script (which does not contain any hint about how to pipe data from one process to the other) – Matteo – 2012-12-18T14:30:31.623
I added some more detail. Basically I'm just using intermediate files instead of passing the output directly onto the next command. – Nicolas – 2012-12-18T14:38:37.337