Я пытаюсь эмулировать функциональность приведенного ниже сценария оболочки bash с использованием объекта Process или ProcessBuilder в Java. Мне не на 100% ясно, как я делаю перенаправление для стандартного входа. Как мне это сделать?
#
# Redirect shell echo command from standard output to file
# This will construct the input file
#
exec 1> $STDIN
echo -e "$NFILE\n$GFILE\n$INPUT\n$OUTPUT\n$CAX"
exec 1>&-
#
# Run executable redirecting standard in as the input file and output to a log file
#
"$EXE" < $STDIN >& $LOG