Lpi 102-400 LPI Level 1 Exam 102, Junior Level Linux Certification,Part 2 of 2 Online Training
Question #1 Topic 1, Shells, Scripting and Data Management What output will the following command sequence produce? echo '1 2 3 4 5 6' | while read a b c; do echo result: $c $b $a; done A . result: 3 4 5 6 2 1B . result: 1 2 3 4...