10 lines
156 B
Bash
Executable file
10 lines
156 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd /
|
|
|
|
SCRIPT_DIR_RELATIVE=$(dirname $0)
|
|
SCRIPT_DIR_ABSOLUTE=$(cd $SCRIPT_DIR_RELATIVE; pwd)
|
|
|
|
echo $SCRIPT_DIR_RELATIVE $SCRIPT_DIR_ABSOLUTE
|
|
|
|
pwd
|