freebsd: 非法变量名
freebsd: Illegal variable name
我正在尝试运行以下命令:
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
但得到:
Illegal variable name.
如何解决?
第一次没有 运行 那样下载脚本。你永远不知道它会在你的系统上执行什么。
- 首先下载脚本:
curl -O https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh
- 然后运行脚本用ksh或者bash:
bash install.sh
我检查了这个安装脚本代码,它没有通过 shellcheck.net 静态分析。所以它的作者还有更多的功课要做。
我正在尝试运行以下命令:
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
但得到:
Illegal variable name.
如何解决?
第一次没有 运行 那样下载脚本。你永远不知道它会在你的系统上执行什么。
- 首先下载脚本:
curl -O https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh
- 然后运行脚本用ksh或者bash:
bash install.sh
我检查了这个安装脚本代码,它没有通过 shellcheck.net 静态分析。所以它的作者还有更多的功课要做。