mirror of
https://github.com/rwxrob/dot
synced 2024-11-16 21:25:29 +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"
|
|
}
|
|
|