9 lines
178 B
Bash
Executable file
9 lines
178 B
Bash
Executable file
#!/bin/sh
|
|
|
|
DROPFOLDER="/home/tavo/Public/dropbox"
|
|
PYTHON="python"
|
|
PORT=5000
|
|
|
|
if [ -d "${DROPFOLDER}" ] ; then
|
|
(cd "${DROPFOLDER}" && "${PYTHON}" -m http.server "${PORT}")
|
|
fi
|