http.sh/src/route.sh

10 lines
188 B
Bash
Executable File

#!/bin/bash
# route.sh - basic router stub
# router(uri, path)
function router() {
route+=("$1")
route+=("$(sed -E 's/:[A-Za-z0-9]+/[A-Za-z0-9.,%:\\-_]+/g' <<< "$1")")
route+=("$2")
}