head	1.3;
access;
symbols
	RELEASE-1_4:1.2.0.2
	GENTOO_1_4_SNAP_2003010800:1.2;
locks; strict;
comment	@# @;


1.3
date	2008.01.20.19.40.12;	author ulm;	state dead;
branches;
next	1.2;
commitid	1bcc4793a39b4567;

1.2
date	2001.08.21.23.16.02;	author chadh;	state Exp;
branches;
next	1.1;

1.1
date	2001.08.18.18.08.20;	author chadh;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	2005.11.30.10.02.01;	author chriswhite;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Clean up.
(Portage version: 2.1.4)
@
text
@#!/bin/sh

E3=/usr/bin/e3
whichE3=${E3}pi

if [ -f ${E3} ]; then
	if [ -f ${whichE3} ]; then
		if [ $# -eq 0 ]; then
			${whichE3}
		else
			for i in $@@
			do
				${whichE3} $i
			done
		fi
	else
		echo ${whichE3}: file does not exist
	fi
else
	echo "${E3}: file does not exist"
fi
@


1.2
log
@fixed empty arg problem.  (wouldn't start with no args)
@
text
@@


1.1
log
@added some easier-to-remember names for e3 for the build image only.
I don't want to interfere with vim or emacs or pico otherwise.
@
text
@d8 8
a15 4
		for i in $@@
		do
			${whichE3} $i
		done
@


1.1.1.1
log
@*** empty log message ***
@
text
@d8 4
a11 8
		if [ $# -eq 0 ]; then
			${whichE3}
		else
			for i in $@@
			do
				${whichE3} $i
			done
		fi
@


