是否可以在 shell 脚本中发送对“交互式菜单”的响应,但在调用它时直接发送?
例如,脚本test.sh
:
#!/bin/bash
sleep 2 #Or something else
echo "menu, select 1 for...."
read choice
if [ $choice -eq 1 ]; then
echo AMAZING
fi
在不更改脚本代码的情况下,我如何调用脚本test.sh
并自动将他1
作为我的下一个选择发送给他。read
是否可以在 shell 脚本中发送对“交互式菜单”的响应,但在调用它时直接发送?
例如,脚本test.sh
:
#!/bin/bash
sleep 2 #Or something else
echo "menu, select 1 for...."
read choice
if [ $choice -eq 1 ]; then
echo AMAZING
fi
在不更改脚本代码的情况下,我如何调用脚本test.sh
并自动将他1
作为我的下一个选择发送给他。read
将您想要的值通过管道传输到脚本中。