I am new to the world of web developers and http servers and the like, but I have a basic shell script like this:
PORT=2600 if [[ $1 =~ ^[0-9]+$ ]] then PORT=$1 fi echo "Starting local http server (ctrl-c to exit)" echo "" echo " Demo: http://127.0.0.1:$PORT/demo" echo "" python -m SimpleHTTPServer $PORT
Everything seems to be working fine, but when I update the css file in my demo, it rarely and inconsistently updates the css displayed on the page. Changes in any html that it does well, and it sometimes showed css changes, but I feel like I am doing something fundamentally wrong here. Thoughts?
Slater victoroff
source share