dotfiles/scripts/dropbox
2024-08-25 11:55:37 -06:00

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