On Tue, Mar 06, 2007 at 02:47:41AM -0500, Josef Sipek wrote: > On Tue, Mar 06, 2007 at 03:01:46PM +0800, Nur Hussein wrote: > > A bug occurred where the temporary mbox is deleted even when 'N' or 'n' was selected > > because of the incorrect use of the -a operator when testing user input. Fixed now to > > use -o instead. > > > > Signed-off-by: Nur Hussein <hussein@xxxxxxxxx> > > --- > > guilt-patchbomb | 2 +- > > 1 files changed, 1 insertions(+), 1 deletions(-) > > > > diff --git a/guilt-patchbomb b/guilt-patchbomb > > index 6f51b4b..ad80fb1 100755 > > --- a/guilt-patchbomb > > +++ b/guilt-patchbomb > > @@ -88,5 +88,5 @@ fi > > echo -n "Delete temporary directory? [Y/n] " > > read n > > > > -[ "$n" != "n" -a "$n" != "N" ] && exit 0 > > +[ "$n" != "n" -o "$n" != "N" ] && exit 0 > > rm -rf $dir > > Would this actually work? > > input $n != n $n != N action (-a) action (-o) > --------------------------------------------------------------------------- > <not N> true true exit exit > n false true rm exit > N true false rm exit > > > The new statement seems wrong. The fact that the original statement had the > logic inverted still remains. It should be exit if ($n==n || $n==N). I fixed it up and commited it. Thanks, Josef "Jeff" Sipek. -- It used to be said [...] that AIX looks like one space alien discovered Unix, and described it to another different space alien who then implemented AIX. But their universal translators were broken and they'd had to gesture a lot. - Paul Tomblin - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html