mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
15 lines
255 B
Plaintext
15 lines
255 B
Plaintext
#! /usr/bin/env lnav -f
|
|
|
|
;CREATE TABLE foobar (
|
|
mykey integer primary key,
|
|
name text
|
|
);
|
|
|
|
;INSERT INTO foobar VALUES (1, 'Jules');
|
|
|
|
;INSERT INTO environ
|
|
SELECT "msg", "Hello: " || group_concat(name, ", ") FROM foobar;
|
|
|
|
:pipe-line-to
|
|
echo $msg
|