http.sh/src/route.sh

9 lines
155 B
Bash
Raw Normal View History

2021-02-14 04:20:41 +01:00
#!/bin/bash
# router(uri, path)
function router() {
route+=("$1")
route+=("$(sed -E 's/:[A-Za-z0-9]+/[A-Za-z0-9.,%:-_]+/g' <<< "$1")")
route+=("$2")
}