Gentoo Archives: gentoo-dev

From: Aron Griffis <agriffis@g.o>
To: gentoo-dev <gentoo-dev@g.o>
Subject: Re: [gentoo-dev] add a "beep" to Portage
Date: Sun, 15 Dec 2002 20:15:08
Message-Id: 20021215202044.GC6634@time
In Reply to: Re: [gentoo-dev] add a "beep" to Portage by Bob Phan
1 Bob Phan wrote:[Fri Dec 13 2002, 08:25:05AM EST]
2 > function emerge {
3 > /usr/bin/emerge $@; echo -e \\7
4 > }
5
6 Note this should be "$@", not bare $@ if you want to preserve quoting of
7 the original args. This is a common mistake in shell scripting.
8
9 Ref "man bash", /^ *\@
10
11 Aron