Bash 语法、方括号和 -d 选项

Bash 语法、方括号和 -d 选项

我在 bash 中有这个命令:

[ -d node_modules/phantomjs ] || npm install -g phantomjs

我不确定用简单的英语来说它是什么意思......

有人可以给出建议吗?

答案1

它的意思是 :

如果“node_modules/phantomjs”不是目录,请运行“npm install -g phantomjs”

维基百科 正确/错误

相关内容