Redirecting operators in Linux
In order to understand about Redirecting operators in Linux we should know how we communicate with a computer. When we are communicating with a computer there should be a way to do it and this is achieved by STDIN (0), STDOUT (1), STDERR (2) file descriptors. There are numbers assigned to these file descriptors as shown below.
STDIN --> 0 STDOUT --> 1 STDERR --> 2
We will see what … Continue Reading









