Is it possible to specify a shebang line without knowing the path of the program you want to do the executing?
maybe don’t specify the path
#!node
or specify several options
#!/usr/local/bin/node
#!/usr/bin/node
Extra points for cross platform solution (various flavors of linux, BSD, OSX etc…)
/usr/bin/envis specifically thought of for cross-platform solutions.so something in lines of:
Will be cross-platform and “the right way to go”.