mirror of
https://github.com/rwxrob/dot
synced 2024-11-18 15:25:52 +00:00
13 lines
145 B
Plaintext
13 lines
145 B
Plaintext
|
|
||
|
|
||
|
_buffer() {
|
||
|
[[ -n "$1" ]] && return 1
|
||
|
"${FUNCNAME[1]}" "$(</dev/stdin)"
|
||
|
}
|
||
|
|
||
|
_jsonstr() {
|
||
|
_buffer "$@" && return $?
|
||
|
jq -MRsc <<< "$1"
|
||
|
}
|
||
|
|