diff options
author | Jim Meyering <jim@meyering.net> | 2002-07-20 11:17:27 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-07-20 11:17:27 +0000 |
commit | 4d84eaa764f81249a24b2d3994fe8a10250ecc83 (patch) | |
tree | 9ea2a1ebce8f8f7ccdb1bdefa3e0fdd37ef60b77 /tests | |
parent | a5c943a9b48eace4ef1dd869b97ef5982c4f8b22 (diff) | |
download | coreutils-4d84eaa764f81249a24b2d3994fe8a10250ecc83.tar.xz |
do not use tail -1; use tail -n 1 instead
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/tail-2/infloop-1 | 2 |
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 |