From 5e93f58c61f29fc79f65d48052d2de223db7bf65 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Fri, 13 Aug 1999 03:02:06 +0000 Subject: Fix the part of pr8201 which is IMHO a bug: the error message now goes to stderr. The existing error message ("I don't know what xxx means") is unchanged, as it is stylisticly in keeping with the light-hearted nature of the program, and is also more likely to be accurate than the "no such acronym" error message proposed in 8201. --- wtf/wtf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wtf') diff --git a/wtf/wtf b/wtf/wtf index c4a0d893..623c2b8d 100644 --- a/wtf/wtf +++ b/wtf/wtf @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: wtf,v 1.4 1999/07/27 15:41:27 drochner Exp $ +# $NetBSD: wtf,v 1.5 1999/08/13 03:02:06 sommerfeld Exp $ # # Public domain # @@ -27,7 +27,7 @@ while [ $# -gt 0 ] ; do if [ $? -eq 0 ] ; then echo "$1: $ans" else - echo "Gee... I don't know what $1 means..." + echo "Gee... I don't know what $1 means..." 1>&2 rv=1 fi fi -- cgit v1.2.3