Short Note about linux redirection
While i run test script (it's usually output to stderr if it's error). Many times an error is too big to display in one display. So i am thinking about linux redirect
>> ./runtests 2>&1 | head
Summary
M>N, M discriptor to filename N
M>&N, M discriptor to another N discriptor
>> ./runtests 2>&1 | head
Summary
M>N, M discriptor to filename N
M>&N, M discriptor to another N discriptor
Comments
Post a Comment