I understand the ls part and redirection operator > .But what does overall command do?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
By default, when you use
Probably you already have seen sometimes command like this:
It means: Redirect the default channel (STDOUT) to error.file and redirect In your case you're redirecting only |
|||
|
|
|
it puts any error messages sent to Without explicitly redirecting stderr, its output would go to the console by default. See All about redirection and BASH Shell: How To Redirect stderr To stdout (redirect stderr to a File) |
|||
|