Running a basic Python SimpleHTTPServer to check out some files in browser. Once the SimpleHTTPServer is running in one directory how do you stop it and use a different directory? or just have it switch to the new one.
Currently using in terminal:
python -m SimpleHTTPServer 8008
Then if I try to run on another directory it says it's already in use. So basically how to I stop a given instance of SimpleHTTPServer?