(It's a guilty pleasure to write shell pipelines that use awk to write a shell script and then pipe that script in sh, I find it easier than looking up the bizzaro syntax for loops in bash in the info pages.)
Do you have any examples of this?
ls -l *.txt | awk '{if ($5<2000) print "cat " $9}' | sh
Do you have any examples of this?