2> means “redirect standard-error” to the given file.
/dev/null is the null file. Anything written to it is discarded.
Together they mean “throw away any error messages”.
2> means “redirect standard-error” to the given file.
/dev/null is the null file. Anything written to it is discarded.
Together they mean “throw away any error messages”.