Multiple choice Which of the following commands will print a sorted list of users on the screen? ls | more who | sort who | sort > list.txt who | wc -l who | grep STEVE Reveal answer Fill a bubble to check yourself B Correct answer Explanation In this command, the output of the 'who' command is passed to the 'sort' command, therefore it will print sorted list of users.