|
|
|
|
|
by repsilat
4417 days ago
|
|
> `cat file | sed | tail` Quite beside the point, but: - You don't want to use `cat`, and - You probably want to pipe `tail` into `sed`, not the other way around. This will be substantially faster if `file` is large, because it lets `tail` be clever about how it finds the last ten lines. |
|