7 lines
126 B
Text
7 lines
126 B
Text
|
# Prints the first non-empty string in the arguments array.
|
||
|
for arg in ${argv}; do
|
||
|
print -n ${arg}
|
||
|
return 0
|
||
|
done
|
||
|
return 1
|