Ubercat

This very simple program has proven pretty useful. It just copies stdin to stout looking for lines that start with a hash bang (#!). When it finds one, that line is replaced by the stdout of the rest of the line as a command. Below are three versions.

#!cat $uberone | sed 's/&/&/g' | sed 's//\>/g'
#!cat $ubertwo | sed 's/&/&/g' | sed 's//\>/g'
#!cat $uberthree | sed 's/&/&/g' | sed 's//\>/g'

Look at the Makefile in this directory to see one way it can be used to generate ubercat.html. We export some shell variables that are used within ubercat.html.uc. This way all the file names appear in the Makefile and none are hidden in ubercat.html.uc. Note that the Bash version cannot be used this way. It doesn't expand the shell variables in ubercat.html.uc.

When combined with something like tag.awk this can give us a poor man's HTML decorator. Look in the Makefile for how index.html is made.

See also Decorate XML. It is specialized to be friendlier to web designers. Note that the hash-bang commands for ubercat will break conformance with xml and possibly other standards.