我在'--allow-fs-read=*'上做错了什么?获取'zsh:在Mac上使用Node.js权限模型时出现“no matches found”错误

u5i3ibmn  于 2023-05-28  发布在  Node.js
关注(0)|答案(1)|浏览(268)

我正在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=*"有什么问题。我看没问题。

cpjpxq1n

cpjpxq1n1#

我已经解决了。为了让它工作,我用反斜杠(\)转义了通配符(*):

node --experimental-permission --allow-fs-read=\* index.js

相关问题