adspace
Answer Posted / Meena Verma
In Linux, redirection operators are symbols used to redirect input or output of a command. Commonly used redirection operators include '<' for input redirection and '>' and '>>' for output redirection. For example, '< filename' reads input from 'filename', while '> filename' writes output to 'filename'. The '>> filename' appends output to 'filename' if it already exists.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers