From 3ce4818b9b2eabe0540faeceb0d20c2fa738664b Mon Sep 17 00:00:00 2001 From: Roland Illig Date: Tue, 7 Jun 2005 14:54:11 +0000 Subject: [PATCH] The error log files are printed to stdout instead of stderr. This makes it easier to use a pager with mc-test. --- maint/mc-test | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/maint/mc-test b/maint/mc-test index 8c29f4a06..d631f9244 100755 --- a/maint/mc-test +++ b/maint/mc-test @@ -170,9 +170,9 @@ fi show_file() { if test -f "$1"; then - echo "" 1>&2 - sed -e "${mc_maxlines}s,.*,(more lines follow ...)," -e "${mc_maxlines}q" "$1" 1>&2 - echo "" 1>&2 + echo "" + sed -e "${mc_maxlines}s,.*,(more lines follow ...)," -e "${mc_maxlines}q" "$1" + echo "" fi return 0 }