#!/bin/sh

# $Id: edit,v 1.4 1998/06/11 14:55:45 czyborra Exp $

# The vi-hater's choice

if [ -f "$1" ] && grep -q  $1
then exec elvis "$@"
else exec pico -t -w -z "$@"
fi
