|
|
|
|
|
by aepiepaey
2685 days ago
|
|
And if you're using cat because it keeps the filename out of the way when editing the pipeline, then just put the redirect before the command instead, so instead of e.g. cat file | grep pattern | sort -u
you can write < file grep pattern | sort -u
and the filename is out of the way compared to grep pattern file | sort -u
|
|