How do > and >> differ when redirecting standard output to a file?
>
>>
> redirects only errors, while >> redirects only successful output.
> appends, while >> truncates and overwrites.
> creates or overwrites the file, while >> appends after existing content.
Both leave the file unchanged and only display output on screen.