Full line from your example:
It just means that the script must be executed with the first executable file named "node", which is found in your current PATH.
Shebang (#!) At the beginning means executing the script as follows. / bin / env is the standard unix program that looks at your current environment. Any argument for it not in the format "name = value" is a command to execute. See the env man page for more information.
sockmonk Feb 25 '13 at 6:11 2013-02-25 06:11
source share