1.

Which of the following out commands will output "onetwothree"?

A. for val; do echo-n $val; done < one two three
B. for one two three; do echo-n-; done
C. for n in one two three; do echo-n $n; done
D. for n in one two three {echo-n $n}
Answer» D. for n in one two three {echo-n $n}


Discussion

No Comment Found