summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-07-20 11:17:27 +0000
committerJim Meyering <jim@meyering.net>2002-07-20 11:17:27 +0000
commit4d84eaa764f81249a24b2d3994fe8a10250ecc83 (patch)
tree9ea2a1ebce8f8f7ccdb1bdefa3e0fdd37ef60b77 /tests
parenta5c943a9b48eace4ef1dd869b97ef5982c4f8b22 (diff)
downloadcoreutils-4d84eaa764f81249a24b2d3994fe8a10250ecc83.tar.xz
do not use tail -1; use tail -n 1 instead
Diffstat (limited to 'tests')
-rwxr-xr-xtests/tail-2/infloop-12
1 files changed, 1 insertions, 1 deletions
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