10 lines
109 B
Bash
Executable File
10 lines
109 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Default Port
|
|
PORT="10101"
|
|
|
|
if [ $# -gt 0 ]; then
|
|
PORT=$1
|
|
fi
|
|
|
|
python -m SimpleHTTPServer ${PORT} |