是否有可能让bash脚本自动处理通常会以默认操作呈现给用户的提示?当前,我正在使用bash脚本调用内部工具,该工具将向用户显示提示(提示输入Y / N)以完成操作,但是我编写的脚本必须完全“放手”,因此我需要一种发送Y|N
到提示符的方法,以允许程序继续执行。这可能吗?
yes
:要做到这一点unix.stackexchange.com/questions/47344/...
是否有可能让bash脚本自动处理通常会以默认操作呈现给用户的提示?当前,我正在使用bash脚本调用内部工具,该工具将向用户显示提示(提示输入Y / N)以完成操作,但是我编写的脚本必须完全“放手”,因此我需要一种发送Y|N
到提示符的方法,以允许程序继续执行。这可能吗?
yes
:要做到这一点unix.stackexchange.com/questions/47344/...
Answers:
一个简单的
echo "Y Y N N Y N Y Y N" | ./your_script
这使您可以将任何“ Y”或“ N”序列传递给脚本。
N
,我会使用这种方法,但是我只需要Y,所以我选择了yes
。太糟糕了,我不能接受两个答案,因为它们都是正确的。
N
邮件,现在您有个很好的方法。
"Y N"
作为输入提供给第一个提示,并挂在第二个提示上,等待我完成它。我尝试将空格更改为换行符,但这也不起作用,仍然在提示中输入了文字字符串。
printf 'y\ny\ny\n' | ./your_script
。这样,您将为每个预期的条目手动插入换行符。
printf '%s\n' Y Y N N Y N Y Y N
在项目之间插入换行符,但不需要一个大格式字符串。
在我的情况下,我需要回答一些不带Y或N但带文本或空白的问题。我发现在这种情况下最好的方法是创建一个shellscript文件。就我而言,我将其称为autocomplete.sh
我需要为教义模式导出器回答一些问题,所以我的文件看起来像这样。
- 这仅是示例 -
php vendor/bin/mysql-workbench-schema-export mysqlworkbenchfile.mwb ./doctrine << EOF
`#Export to Doctrine Annotation Format` 1
`#Would you like to change the setup configuration before exporting` y
`#Log to console` y
`#Log file` testing.log
`#Filename [%entity%.%extension%]`
`#Indentation [4]`
`#Use tabs [no]`
`#Eol delimeter (win, unix) [win]`
`#Backup existing file [yes]`
`#Add generator info as comment [yes]`
`#Skip plural name checking [no]`
`#Use logged storage [no]`
`#Sort tables and views [yes]`
`#Export only table categorized []`
`#Enhance many to many detection [yes]`
`#Skip many to many tables [yes]`
`#Bundle namespace []`
`#Entity namespace []`
`#Repository namespace []`
`#Use automatic repository [yes]`
`#Skip column with relation [no]`
`#Related var name format [%name%%related%]`
`#Nullable attribute (auto, always) [auto]`
`#Generated value strategy (auto, identity, sequence, table, none) [auto]`
`#Default cascade (persist, remove, detach, merge, all, refresh, ) [no]`
`#Use annotation prefix [ORM\]`
`#Skip getter and setter [no]`
`#Generate entity serialization [yes]`
`#Generate extendable entity [no]` y
`#Quote identifier strategy (auto, always, none) [auto]`
`#Extends class []`
`#Property typehint [no]`
EOF
我喜欢这种策略的地方是,您可以评论答案是什么,而使用EOF时,空白行就是默认答案。事实证明,此导出器工具具有自己的JSON副本,可以回答这些问题,但是我在执行完=)之后就发现了。
运行脚本只需在您想要的目录中并运行 'sh autocomplete.sh'
在终端中。
简而言之,通过结合使用<< << EOL和EOF 和回车线,您可以根据需要回答提示的每个问题。 每行都是一个新答案。
我的示例仅说明了如何使用`字符通过注释来完成此操作,以便您记住每个步骤。
请注意,此方法的另一个优点是您可以回答的内容多于Y或N ...实际上,您可以回答空白!
希望这可以帮助某人。