Posted by: Pdfprep
Post Date: December 29, 2020
What is the output of the following command sequence?
for token in a b c; do echo -n "$token "; done
A . anbncn
B . a b c
C . "a " "b " "c "
D . token token token
E . abc
Answer: B
Leave a Reply