I/O Redirection in Linux

Three types of I/O redirections in Linux1. stdin         <2. stdout       >3. stderr       2>Examples: 1. # date > file1.txt    Redirects the output of date command to the file file1.txt .2. #cal >> file1.txt    Redirects the output of cal command to file1.txt. Note that the out put of cal command will...