10 lines
166 B
Bash
Executable File
10 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
#
|
|
DIR2="$(awk '{n=split($0,a,"/");print(a[n])}' <<< $DIR)"
|
|
echo $DIR2
|
|
#
|
|
cd $DIR
|
|
ls
|
|
ln ./run.py ..
|