Hacker News new | ask | show | jobs
by DiggyJohnson 430 days ago
Genuinely curious about what the full script would look like in consideration of your feedback.
1 comments

  python3 -m http.server "${$1:-8080}" "${$2:-.}"
Almost! That will read the variable whose name is is the script argument. Also the directory argument needs a flag on my setup. It should be:

  python3 -mhttp.server "${1:-8080}" -d "${2:-.}"
Yep, you're right.