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
…
0
votes
do file with extension .bat can run in linux
In some cases programs ship with different start scripts for different operating system. For example there might be a start.bat and a start.sh (or sometimes only start). …
