|
|
|
|
|
by navaati
2419 days ago
|
|
That's right regarding directly giving the filename for the program (here wc) to open itself. However using the input redirect is fine, especially if you format it that way (which is exactly the same thing): <file wc -l
Then, adding another step is as natural as with cat: <file grep meh |wc -l
|
|