n Bash, inserting 1>&2 after a command redirects standard output to standard error.
The number 1 refers to the file descriptor for standard output (stdout), and the &2 refers to the file descriptor for standard error (stderr). The > operator is used to redirect output from one file descriptor to another.
So, when you run a command followed by 1>&2, the standard output of that command will be redirected to standard error, which means that the output of the command will be written to the same place as error messages. This can be useful in certain situations, such as when you want to capture both the output and error messages of a command in the same log file.
upvoted 1 times
...
This section is not available anymore. Please use the main Exam Page.LX0-103 Exam Questions
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
linux_admin
2 years, 2 months ago