Multiple choice What command will output the last five lines of a file called test.txt? tail test.txt tail -n 5 test.txt head -n 5 test.txt less text.txt Reveal answer Fill a bubble to check yourself B Correct answer Explanation The tail command is used to display the end of a file. The -n option specifies the number of lines to show, so tail -n 5 test.txt outputs the last five lines.