for i in $(some function); do somefunction2 $i; done
-su: 0 5 : syntax error in expression (error token is "5 ")
My problem is some function return "0 9" I can't use this:
for i in "0 5"; do somefunction2 $i; done
Results are the same
-su: 0 5 : syntax error in expression (error token is "5 ")
but if use this:
for i in 0 5; do somefunction2 $i; done
It works. Some function for loop and echo this
echo -n "$i "
I want return 0 5 not "0 5" How can I do?
echo "$[ 0 5 ]"which yields:bash: 0 5 : syntax error in expression (error token is "5 ")which is obviously caused by a wrong arithmetic expansion. Recheck the syntax in your code. – hmontoliu Aug 14 '11 at 15:01