in reply to perl callable from bash?
Moreover, the 2 scripts, called by the shell script, are no longer in the same directory as the shell script - hence it should come as no surprise that the shell script can no longer find them, so assuming all 3 scripts were previously in your home directory, I would modify the shell script (now /bin/bl) to read...
#!/bin/sh filename=$HOME/$1 firstscript $filename secondscript $filename
|
|---|