Multiple choice technology operating systems How to display number of lines in a file wc –l wc –line wc –c other Reveal answer Fill a bubble to check yourself A Correct answer Explanation wc -l counts the number of lines in a file. wc stands for 'word count' and -l specifies lines. The -c option counts bytes, not lines. There is no -line option for wc.