脚本sh:命令等待来自键盘的输入,但脚本输入输入
我有一个需要从键盘输入的命令,不能直接从命令行获得它,就像sudo一样,我忘记了将一个已知变量传递给终端输入的语法:[sudo] password for cl-r:'
#/bin/bash (or ksh)
.....
VARIABLE_NEEDED=$1
mycommand_wait_and_needs_input_from_keyboard [?? magic-instruction_beginning ??] # command prompt for input
VARIABLE_NEEDED
[?? magic-instruction_end ??]
# ... command executed
[ $? != 0 ] && ...
也许你的意思是:
echo -n "$VARIABLE_NEEDED" | mycommand_wait_and_needs_input_from_keyboard
看看我的dotfiles的第7行。 您可以在bash脚本中调用sudo -v
以使用sudo权限运行它。
上一篇: script sh : command wait an input from keyboard, but script type the input
下一篇: Entering values to command prompt through a script/batch/ANT/Java Code etc