Comment on Ask HN: What are your favorite UNIX tools?parentComments−aadhavansOP1yuse awk to write a shell scriptDo you have any examples of this?−PaulHoule1yHow about ls -l *.txt | awk '{if ($5<2000) print "cat " $9}' | sh to cat text files that are less than 2000 bytes long
Comments
Do you have any examples of this?
How about
to cat text files that are less than 2000 bytes long