vote up 1 vote down star

How do I redirect stdin from a shell script to a command in the shell script? I am trying to pass the stdin to a java System.in stream.

I want to replace

find . -type f | $JAVA_HOME/bin/java com.domain.BatchProcess

with

 find . -type f | ./batch.sh
flag

3 Answers

vote up 1 vote down check

If the command:

$JAVA_HOME/bin/java com.domain.BatchProcess

is expecting input from stdin, then putting it in a script and running your second command will work.

link|flag
vote up 0 vote down

It does it automatically.

link|flag
vote up 2 vote down

If you exec the command within the script, it will replace the shell and inherit it's file descriptors, including stdin,stdout and stderr.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.