如何在 IF 片段中设置默认值?

发布于 2024-09-04 05:09:52 字数 221 浏览 7 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

只想待在家 2024-09-11 05:09:52

这会提示用户输入,如果自行按下 Enter,则将 port 的值设置为默认值“389”:

read -rp "port(389)=" port
port="${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":

read -rp "port(389)=" port
port="${port:-389}"
忆梦 2024-09-11 05:09:52

这并不完全符合您的要求,但 Solaris 有一组用于此类事情的实用程序。

PORT=`/usr/bin/ckint -d 389 -p 'port(389)=' -h 'Enter a port number'`

查看其他 /usr/bin/ck* 实用程序以提示用户输入其他类型的数据,包括文件或用户名等内容。

It's not exactly what you asked, but Solaris has a set of utilities for this sort of thing.

PORT=`/usr/bin/ckint -d 389 -p 'port(389)=' -h 'Enter a port number'`

Check out the other /usr/bin/ck* utilities to prompt the user for other types of data, including things like files or user names.

不语却知心 2024-09-11 05:09:52

如果将 -e 传递给 read,则可以使用 -i 指定提示的初始值。

If you pass -e to read then you can use -i to specify an initial value for the prompt.

穿越时光隧道 2024-09-11 05:09:52

如果用户不输入任何内容,则 $PORT 将被替换为任何内容 - 使用原始 Bourne shell 进行此操作的古老约定是:

if [ "x$PORT" == "x" ]; then

尽管是更现代的 shell(即实际的 bash,但不是 Solaris 10 /bin/ sh 这是
一个古老的 Bourne shell)应该能够处理:

if [[ "$PORT" == "" ]]; then

或者甚至

if [[ -z "$PORT" ]]; then

If the user enters nothing then $PORT is replaced with nothing - the ancient convention for making this work with the original Bourne shell is:

if [ "x$PORT" == "x" ]; then

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:

if [[ "$PORT" == "" ]]; then

or even

if [[ -z "$PORT" ]]; then
看透却不说透 2024-09-11 05:09:52

另一种只使用 shell 的方法
-- 尝试参数替换:

read port
port=${port:-389}

Another way with just the shell
-- try parameter substitution:

read port
port=${port:-389}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文