Search Results

12
votes

unix shell script find out which directory the script file resides?

In bash you should get what you need like this: #!/bin/bash BASEDIR=`dirname $0` echo $BASEDIR …
2
votes

What is the best (portable and maintanable) Shell Scripting language today?

I would expect BASH to be the widest spread shell at the moment since it is the default for many Linux distributions (it can even run on Windows with cygwin, but that's probably true for the other …