#!/usr/bin/perl

if ($ENV{'CHAVWISH'}) {
  exec ($ENV{'CHAVWISH'},@ARGV);
} else {
  exec ("wish",@ARGV);
}
