7 lines
179 B
Plaintext
7 lines
179 B
Plaintext
# A simple wrapper around `zk list` to select & view a note
|
|
zkv() {
|
|
filename=$(zk list "$@" --interactive -q -f jsonl | jq -r .absPath )
|
|
less $filename
|
|
echo $filename >&2
|
|
}
|