9 lines
132 B
Bash
Executable File
9 lines
132 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd $( dirname $( readlink -f $0 ) )
|
|
set -e
|
|
. config.env
|
|
|
|
cd "$ADHOCSERVERROOT"
|
|
python3 -m http.server $ADHOCSERVERPORT
|