6 lines
72 B
Bash
6 lines
72 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
function basedir() {
|
||
|
echo $( cd $(dirname $0) && pwd )
|
||
|
}
|