1
0
Fork 0
mirror of synced 2024-06-01 14:51:11 -04:00
zimfw/modules/git-info/functions/coalesce

7 lines
126 B
Plaintext
Raw Normal View History

2018-04-05 00:37:10 -04:00
# Prints the first non-empty string in the arguments array.
for arg in ${argv}; do
print -n ${arg}
return 0
done
return 1