🎴 Flashcard Mode

Unix/Linux Commands and Windows OS Basics

Card1 / 20
Mastered0
Review0
QuestionClick to flip

sed -n option

AnswerClick to flip back
A
does not print the output
💡 Explanation:

The sed -n option suppresses automatic printing of pattern space. By default, sed prints each line to stdout. With -n, nothing is printed unless explicitly requested with the p command, enabling selective output control.

Change Mode