From: Jim Meyering Date: Mon, 20 Jun 2011 08:01:43 +0000 (+0200) Subject: tests: init.sh: use "sed 1q" in place of "head -1" X-Git-Tag: v8.13~100 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d919fbb7fc5e75e3bf2835f9e2fccbe179b7d69;p=thirdparty%2Fcoreutils.git tests: init.sh: use "sed 1q" in place of "head -1" * tests/init.sh (warn_): Use "sed 1q" in place of "head -1". The latter is officially obsolete but more portable than "head -n1". Reported by Bernhard Voelker. --- diff --git a/tests/init.sh b/tests/init.sh index 5878179fc0..460937de4f 100644 --- a/tests/init.sh +++ b/tests/init.sh @@ -84,7 +84,7 @@ warn_ () case $IFS in ' '*) printf '%s\n' "$*" >&2 test $stderr_fileno_ = 2 \ - || { printf '%s\n' "$*" | head -1 >&$stderr_fileno_ ; } ;; + || { printf '%s\n' "$*" | sed 1q >&$stderr_fileno_ ; } ;; *) (IFS=' '; warn_ "$@");; esac }