Which symbol allows you to add content to the end of a file without erasing its current contents?
Explanation
Option A (>) is used to redirect output and overwrite the file. Option B (>>) appends output to the file instead of overwriting. Options C (<) and D (<<) are used for input redirection.