#!/bin/sh -e
# -e means exit if any commands fail.

gcc -O2 own-tty.c -o own-tty
strip own-tty

# metext is just a quick Perl script I threw together which types
# the tiresome parts of HTML for me.  It has the added benefit of
# letting me type nice plain ASCII text files that anyone can read,
# but letting them look nice for those with web browsers.
metext usershell.metext > usershell.html
