我写了一个nodejs bash hello.js
#! /usr/local/bin node
console.log('Hello');
和
$ sudo chmod +x hello.js
$ ./hello.js
然而,bash返回
zsh: permission denied: ./hello.js
答案 0 :(得分:1)
这是Node / JavaScript脚本,而不是Bash脚本。 在脚本中只需编写:
console.log('Hello');
然后使用node ./hello.js
执行它。
您必须已安装NodeJS。