I've done this for single-use pipelines when built up because the nature of the data is unfamiliar. It usually starts with
cat file | less
and then
cat file | grep bar | less
and then
cat file | grep bar | awk '{ print $1 }' | less
and so on.
But if it's going to be used more than once then it does seem odd to have the unnecessary commands. Maybe "advanced" awk (beyond print $1) is unknown to people?
8 comments
[ 2.9 ms ] story [ 39.2 ms ] threadie..
which can simply beThat being said, point well made.
But if it's going to be used more than once then it does seem odd to have the unnecessary commands. Maybe "advanced" awk (beyond print $1) is unknown to people?
http://en.wikibooks.org/wiki/Ad_Hoc_Data_Analysis_From_The_U...