#LESS=-MM
PS1='\h\!\$ '
PS2='	'
PATH=/etc:/usr/etc:/bin:/usr/bin:/usr/games:/usr/local/bin:/usr/X386/bin:.
alias more=less
alias copy=mcopy
alias ll='ls -l'
alias dir='ls -l'
alias which='type -path'
alias lo=logout
alias rm='rm -i'
alias mv='mv -i'
alias cp='cp -i'
alias m='less'
alias ls='ls -Fk'
alias jo='jove'
alias du='du -k'
alias h=history
alias egpre=egrep
export LESS TERM PS1 PS2
export EDITOR=jove
export VISUAL=jove
export TMPDIR=/tmp
alias j='jobs -l'

ff()
{
	it=$1
	shift
	find . \( -name "*$it*" -o -name ".*$it*" \) -print $*
}

fe()
{
	it=$1
	shift
	find . \( -name "*$it" -o -name ".*$it" \) -print $*
}

purge()
{
rm -f .*[~\-^] *[~\-^]
}

.()
{
   if [ $# = 1 ]; then
	source $1
   else
	pwd
   fi
}

tyls()
{
    local where=`type -p $1`
    if [ x$where = x ]; then
	type $1
    else
        ls -lsgL $where
    fi
}

tym()
{
    local where=`type -p $1`
    if [ x$where = x ]; then
	type $1
    else
        m $where
    fi
}



