rwxrob-dot/snippets/bash/filter

9 lines
115 B
Plaintext
Raw Normal View History

2022-02-09 07:29:05 +00:00
_filter(){
[[ -n "$1" ]] && return 1
while IFS= read -ra args; do
"${FUNCNAME[1]}" "${args[@]}"
done
}