Created
October 5, 2016 21:57
-
-
Save binki/414fdd302374dc2711a55f6fb001c870 to your computer and use it in GitHub Desktop.
the point of shebang
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ohnobinki@gibby ~ $ cat blah.js | |
#!/usr/bin/env node | |
console.log('hi'); | |
ohnobinki@gibby ~ $ ./blah.js | |
hi | |
ohnobinki@gibby ~ $ cat blah2.js | |
console.log('hi'); | |
ohnobinki@gibby ~ $ ./blah2.js | |
./blah2.js: 行 1: 予期しないトークン `'hi'' 周辺に構文エラーがあります | |
./blah2.js: 行 1: `console.log('hi');' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment