This post is a continuation to my post from two weeks ago where I talked about Linux commands for file management.

2>

Redirects standard error instead of standard output. Useful when a command is throwing warnings or errors you want to save separately from its normal output.

Usage: command 2> errors.log

2>&1