Multiple choice

Append STDOUT to the end of a file.

  1. >>

  2. >

  3. 2>

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The double greater-than operator (>>) appends the output to a file rather than overwriting it, which is the behavior of the single > operator.