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