mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 19:24:32 +00:00
13 lines
168 B
Bash
13 lines
168 B
Bash
#!/usr/bin/env bash
|
|
|
|
prole_first_nonempty() {
|
|
local v
|
|
for v in "$@"; do
|
|
if [[ -n "$v" ]]; then
|
|
printf '%s' "$v"
|
|
return 0
|
|
fi
|
|
done
|
|
return 1
|
|
}
|