From 4d84eaa764f81249a24b2d3994fe8a10250ecc83 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 20 Jul 2002 11:17:27 +0000 Subject: do not use tail -1; use tail -n 1 instead --- tests/tail-2/infloop-1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/tail-2/infloop-1 b/tests/tail-2/infloop-1 index c02323b67..a540a645b 100755 --- a/tests/tail-2/infloop-1 +++ b/tests/tail-2/infloop-1 @@ -24,7 +24,7 @@ yes_pid=$! while :; do test -s t && break done -tail -1 t & +tail -n 1 t & tail_pid=$! kill $yes_pid sleep 1 -- cgit v1.2.3-54-g00ecf