clc-debian/preseedserver.sh

13 lines
222 B
Bash
Raw Normal View History

2021-07-12 20:37:34 -04:00
#!/bin/bash
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi
LOCALIP=$(hostname -I)
echo "Starting server. Press CTRL+C to stop."
echo -e "Local IP address: \e[32m$LOCALIP\e[0m"
python3 -m http.server 80