gpt4 book ai didi

bash - 绕过 Homebrew 软件安装脚本中的提示(按回车键)

转载 作者:行者123 更新时间:2023-11-29 08:44:18 24 4
gpt4 key购买 nike

安装 Homebrew 软件的非常简单的脚本:

  #!/bin/bash

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

输出给出:

==> This script will install:
/usr/local/bin/brew
/usr/local/Library/...
/usr/local/share/man/man1/brew.1

Press RETURN to continue or any other key to abort

如何在这样的脚本中按回车键?期望是最佳路线吗?

最佳答案

阅读 https://raw.github.com/Homebrew/homebrew/go/install 的来源-- 如果 stdin 是 TTY,它只会提示。如果您从 /dev/null 重定向 stdin,它根本不会提示。所以:

ruby \
-e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" \
</dev/null

关于bash - 绕过 Homebrew 软件安装脚本中的提示(按回车键),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25535407/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com