nscript
nscript copied to clipboard
Adjust shebang line?
The default shebang #!/usr/bin/nscript failed to work for me. Perhaps because I use NVM on a Mac, I'm not sure. But changing it to use env worked nicely:
#!/usr/bin/env nscript
Good point, that is a better approach indeed. Thanks for the suggestion