Not strictly on-topic, but I have become accustomed to reading my man pages in vim, beautifully colourised. This my alias/function for bash, rewrite according to taste:
vman() { /usr/bin/man -w "$@" >/dev/null && /usr/bin/man "$@" | /usr/bin/col -b | /usr/local/bin/vim -c 'set ft=man nomod nolist noma' - } alias man='vman' It is a bit wasteful, but it sure is purty. Cheers Tom _______________________________________________ freebsd-stable@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "[EMAIL PROTECTED]"