我尝试在 shell 脚本中执行以下操作:
bash;
在 bash 上下文中:
- 跑
./a.out
在./a.out
上下文中,我需要模拟按键:
yes
3292
no
我该怎么做?我所有的尝试都失败了&
,&&
并且;
在主 shell 上下文中而不是在 bash 中执行后续命令。
bash && echo "yes" > /dev/console
我已经看到在 shell 脚本中使用期望没有使用本机 shell 命令的任何替代方法吗?我不想依赖其他工具。