mirror of
https://github.com/tstack/lnav
synced 2024-11-08 01:10:29 +00:00
9b2a6f323a
Fix loading of configs from include dirs Add "config get" and "config blame" management CLI commands
11 lines
234 B
Plaintext
11 lines
234 B
Plaintext
#
|
|
# @synopsis: hw-url-handler
|
|
# @description: Hello, World! URL handler
|
|
#
|
|
|
|
;SELECT jget(url, '/host') AS hostname,
|
|
jget(url, '/path') AS upath
|
|
FROM (SELECT parse_url($1) AS url)
|
|
|
|
:sh echo "Hello, $upath at $hostname!"
|