#! /bin/bash

vi `which $*`

exit

file=`which $*`
echo $file
if test ! "$file"
then
	for i in $*
	do
		touch $HOME/bin/$i
		chmod +x $HOME/bin/$i
	done
	file=`which $*`
fi
exec $VISUAL $file
