From a9a7249c1b32d1f17cac5471e8352aa574d84971 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Tue, 14 Sep 2010 02:18:38 +0200 Subject: Log to stderr --- play.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/play.sh b/play.sh index 61ac00e..5f41487 100755 --- a/play.sh +++ b/play.sh @@ -15,11 +15,11 @@ BIN=$0 # global functions {{{ out () { - echo ">>> $@" + echo ">>> $@" >&2 } log () { - [[ $PLAY_DEBUG > 0 ]] && echo "*** $@" + [[ $PLAY_DEBUG > 0 ]] && echo "*** $@" >&2 } die () { @@ -129,7 +129,7 @@ else DGAME="$PLAY_GAMES/$GAME" list () { - out "Games are:" + out "The installed games are:" for k in $PLAY_GAMES/*(.,@:t); do echo "\t> $k" done -- cgit v1.2.3