http://qs1969.pair.com?node_id=250662


in reply to unhead and untail

A couple of thoughts:

The cutting up of input stream as you describe can be much done much easier with sed, for instance, instead of

query-students | sort | unhead '^D' | untail '^G'
do
query-students | sort | sed '/^D/,/^G/p; d'
Also, neither head nor tail modify files they operate on. I understand, you were probably solving a specific problem, but this script can be generalized even more.