I'm writing a rails app and need to run come scripts through ./script/runner

while i could put

#!/home/cannon/src/timetracker/script/runner 

at the top, that wont work in production where it needs to be more like

#!/var/www/loclahost/htdocs/timetracker/script/runner -e=production

since ./script is not in my path, and I don't want it to be, how can I allow this to be set up,

I am using a cron job to run it on a Linux box

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Use env in the shebang line to look things up in the path:

#!/usr/bin/env ./script/runner
link|improve this answer
1  
This is how all shebangs should be written, as it means your script doesn't require a program to be installed in a certain location. eg #!/usr/bin/env bash – Dunes Jun 24 '11 at 20:05
so i can pass a relative path to env? will that be relative to the script's location, or from where it is called, which idk where cron's pwd is... – loosecannon Jun 24 '11 at 20:42
1  
Oh, it's relative to your cwd. Cron's man page should be able to tell you. – Josh Lee Jun 25 '11 at 1:12
this is WORTHLESS, since as mentioned by Josh, it's relative to the caller's current path, not the path of the script file. – ddopson Mar 8 at 7:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.