如何在 IF 片段中设置默认值?
我在 Solaris 10 中编写的 bash 脚本中有以下代码片段:
printf "port(389)="
read PORT
if [[ $PORT == "" ]]; then
PORT=389
fi
我试图得到的是,如果用户按下 Enter 键,则端口应设置为 389。 上面的代码片段似乎不起作用。
有什么建议吗?
I have the following snippet in a bash script written in Solaris 10:
printf "port(389)="
read PORT
if [[ $PORT == "" ]]; then
PORT=389
fi
What I am trying to get that if the user hits the enter key, the Port should be set to 389.
The snippet above does not seem to be working.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这会提示用户输入,如果自行按下 Enter,则将
port
的值设置为默认值“389”:This prompts the user for input and if enter is pressed by itself, sets the value of
port
to a default of "389":这并不完全符合您的要求,但 Solaris 有一组用于此类事情的实用程序。
查看其他 /usr/bin/ck* 实用程序以提示用户输入其他类型的数据,包括文件或用户名等内容。
It's not exactly what you asked, but Solaris has a set of utilities for this sort of thing.
Check out the other /usr/bin/ck* utilities to prompt the user for other types of data, including things like files or user names.
如果将
-e
传递给read
,则可以使用-i
指定提示的初始值。If you pass
-e
toread
then you can use-i
to specify an initial value for the prompt.如果用户不输入任何内容,则
$PORT
将被替换为任何内容 - 使用原始 Bourne shell 进行此操作的古老约定是:尽管是更现代的 shell(即实际的 bash,但不是 Solaris 10 /bin/ sh 这是
一个古老的 Bourne shell)应该能够处理:
或者甚至
If the user enters nothing then
$PORT
is replaced with nothing - the ancient convention for making this work with the original Bourne shell is:Though more modern shells (i.e. actual bash, but not Solaris 10 /bin/sh which is
an ancient Bourne shell) should be able to deal with:
or even
另一种只使用 shell 的方法
-- 尝试参数替换:
Another way with just the shell
-- try parameter substitution: