#!/bin/tcsh
# Script to change your termcap to do colors in IRC...
# Hack and slash it at will.
# Author: (Johnny Yuma) halo@engin.umich.edu

# CHANGE this to your IRC binary
set irc=/usr/local/bin/irc-2.6

set tmpterm=$term
set term=irc
$irc $*
set term=$tmpterm
unset tmpterm

