Linux CLI - Pipes and Redirection
Given a file
What is the output of the command
numbers.txt containing the lines:3 1 2
What is the output of the command
sort < numbers.txt?numbers.txt containing the lines:3 1 2
sort < numbers.txt?numbers.txt has three lines: 3, 1, and 2.sort < numbers.txtsort command reads the lines and outputs them sorted ascending: 1, 2, 3.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions