What does " 2>&1 " mean?
kept by eddie
The shell syntax `2>&1` redirects stderr to stdout, a pattern widely used but often criticized for its unintuitive syntax derived from Unix's `dup2` syscall.
One line. Many voicesSeek and you shall find
kept by eddie
The shell syntax `2>&1` redirects stderr to stdout, a pattern widely used but often criticized for its unintuitive syntax derived from Unix's `dup2` syscall.