mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
9 lines
115 B
Plaintext
9 lines
115 B
Plaintext
|
|
||
|
_filter(){
|
||
|
[[ -n "$1" ]] && return 1
|
||
|
while IFS= read -ra args; do
|
||
|
"${FUNCNAME[1]}" "${args[@]}"
|
||
|
done
|
||
|
}
|
||
|
|