edited by
531 views
0 votes
0 votes

Provide short answers to the following questions:

Consider the following sequence of UNIX commands:

grep main a.c b.c c.c > grepout &
wc < grepout &
rm grepout &

Why is this not equivalent to the following?

grep main a.c.b.c c.c | wc
edited by

Please log in or register to answer this question.

Related questions