PDA

View Full Version : Unix / scripting help


Quadruple Bypass
Sep19-09, 12:55 AM
hi! im trying to create a script that will run a program, enter inputs (this program requires some inputs for it to run), and then send the output to a file. im stuck on trying to get the script to enter in those inputs :( so far all i have is:

./program > file
<input1>
<input2>
<input3>

and unfortunately this doesnt work. ive tried like a thousand combinations that i thought would work but i cant figure it out. im pretty sure there is something wrong with the way im sending the outputs to the file, but i think i might be able to figure that out whereas i have no idea how to get the inputs inputted in correctly. im new to unix as you can tell. any help is appreciated!

mXSCNT
Sep19-09, 03:48 AM
Your program could be buggy, you might have forgotten to do chmod +x on your script, you might have forgotten to put #!/bin/bash as the first line of the script (or #!/usr/bin/python or whatever your script interpreter is), you might not have permission to write to the file, or perhaps some other problem. Obviously you should have given more information than "it doesn't work."

D H
Sep19-09, 07:26 AM
./program > file
<input1>
<input2>
<input3>

and unfortunately this doesnt work.
That works quite nicely -- just not the way you think it should. The shell script command processor (which one? tcsh? bash? something else?) processes the first line by invoking ./program in a subprocess, with stdout redirected to file. What about stdin? Standard input to your shell script is presumably your terminal -- and you have said nothing to change that.

You need to tell your shell script command processor that you want ./program run with standard input from something other than your terminal. There are many ways to do this. Two of them are to Write your data to a temporary file and run your program with this temporary file as input Run your program with data embedded in the script.


1. Using a temporary file (assumes csh, tcsh, or something like that)
set tempfile = `mktemp my_script.XXXXXX`
echo "input 1" >> $tempfile
echo "input 2" >> $tempfile
echo "input 3" >> $tempfile
./program < $tempfile > file
rm $tempfile


2. Using a here document
./program > file <<EOF
input 1
input 2
input 3
EOF
What if you want to send the string EOF to your program? Simple: Use something other than EOF to demarcate the end of the here document.
./program > file <<DONE
input 1
input 2
input 3
EOF
DONE

The here document approach is nice and simple in this case.

Quadruple Bypass
Sep19-09, 10:31 PM
that worked perfectly, thanks!