我正在MacOS Venture 13.3.1上尝试新的Nodejs权限模型。我已经安装了Node.js v20.1.0,每当我输入以下命令时:
node --experimental-permission --allow-fs-read=* index.js
我在终端中得到以下错误:
zsh: no matches found: --allow-fs-read=*
我不知道“--allow-fs-read=*"有什么问题。我看没问题。
cpjpxq1n1#
我已经解决了。为了让它工作,我用反斜杠(\)转义了通配符(*):
\
*
node --experimental-permission --allow-fs-read=\* index.js
1条答案
按热度按时间cpjpxq1n1#
我已经解决了。为了让它工作,我用反斜杠(
\
)转义了通配符(*
):