Often, when restarting Django runserver, if I use the same port number, I get a \'port is already in use\' message. Subsequently, I need to increment the port number each t
netstat -tulpn |grep 8000|awk '{print $7}'|cut -d/ -f 1|xargs kill