Tuesday, October 18, 2011

Q. Significance of "command &>filename" and "command >&2"?
Ans.
command &>filename  : redirects both the stdout and the stderr of command to filename.
command >&2             : redirects stdout of command to stderr.

No comments:

Post a Comment