为什么 Bash 与 Curl 一起使用时不会等待读取?

发布于 2024-11-18 09:01:28 字数 273 浏览 3 评论 0原文

我编写了一个 Bash 脚本来配置 Git。它使用内置的 read ,但是当我这样做时:

bash < <(curl -s https://raw.github.com/gist/419201/gitconfig.bash)

它不会等待我输入输入。我怎样才能让它等待?

I wrote a Bash script to congfigure Git. It uses the read builtin, but when I do:

bash < <(curl -s https://raw.github.com/gist/419201/gitconfig.bash)

It doesn't wait for me to enter input. How do I get it to wait?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

や莫失莫忘 2024-11-25 09:01:28

我按照 jcomeau_ictx 的建议在没有 < 的情况下对其进行了测试,并且它有效。

bash <(curl -s https://raw.github.com/gist/419201/gitconfig.bash | head -n 3)

注意:我使用 head -3 在读取后停止执行。

I tested it whitout the < as jcomeau_ictx suggested and it worked.

bash <(curl -s https://raw.github.com/gist/419201/gitconfig.bash | head -n 3)

Note: I used head -3 to stop execution after the read.

总以为 2024-11-25 09:01:28

您可以尝试直接从控制终端 /dev/tty 读取,以重新启用用户输入,以防 stdin 已重定向,即文件描述符 0 未在终端。

您甚至可以使用 test 命令的 -t 选项以编程方式处理这种情况(请参阅 help testman test< /代码>)。

read git_name < /dev/tty       # per-command I/O redirection
#read git_name < /dev/console  # alternative

exec 0</dev/tty               # script-wide I/O redirection
read git_name

You may try to read directly from the controlling terminal /dev/tty to re-enable user input in case stdin is already redirected, i.e. file descriptor 0 is not opened on a terminal.

You may even use the -t option to the test command to handle such a situation programmatically (see help test or man test).

read git_name < /dev/tty       # per-command I/O redirection
#read git_name < /dev/console  # alternative

exec 0</dev/tty               # script-wide I/O redirection
read git_name
雾里花 2024-11-25 09:01:28

为了使用标准输入,您需要获取文件,例如 /tmp,然后是 bash /tmp/gitconfig.bash。您现在的做法是重定向标准输入,而 Unix 没有像 VMS 那样的用于命令输入的单独文件描述符。

In order to use stdin, you'd need to fetch the file, say to /tmp, then bash /tmp/gitconfig.bash. The way you're doing it now, you're redirecting stdin, and Unix doesn't have a separate file descriptor for command input like VMS does.

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