I/O Redirection – STDIN, STDOUT, STDERR streams
Unix and Linux treat data streams and peripherals device files as files. By default there are always three files open, stdin (keyboard), stdout (display) and stderr (error messages outputted on the screen). As with every open file, it is possible to redirected the three files. For instance you can redirect (capture) the output of a command, file, script and send it to another command, file or script as input. More »
Posted in Linux Command Line | 0 Comments