我正在执行一个提示输入的bin文件。如何从shell脚本中写入该bin?
#! /bin/bash
./bin/file_name
for i in {1..5}
do
echo "This is a command" #this is wrong....
done
答案 0 :(得分:0)
大多数理智的程序(即,不会尝试侦听实际的键盘事件)应该接受标准输入:
echo "some input" | ./bin/file_name
答案 1 :(得分:0)