From acc31ef1ac0b261988bb5f32d8512f5c1e74832c Mon Sep 17 00:00:00 2001 From: oech3 <79379754+oech3@users.noreply.github.com> Date: Thu, 9 Apr 2026 13:01:00 +0900 Subject: [PATCH] wc drop outdated info from BENCHMARKING.md --- src/uu/wc/BENCHMARKING.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/uu/wc/BENCHMARKING.md b/src/uu/wc/BENCHMARKING.md index d65c17d3f2a..ff0c61a3f44 100644 --- a/src/uu/wc/BENCHMARKING.md +++ b/src/uu/wc/BENCHMARKING.md @@ -22,8 +22,7 @@ except to see if it still works. Try `wc -c largefile`. On Linux `splice()` is used to get the input's length while discarding it directly. The best way I've found to generate a fast input to test `splice()` is to pipe the -output of uutils `cat` into it. Note that GNU `cat` is slower and therefore less -suitable, and that if a file is given as its input directly (as in +output of uutils `cat` (with `splice()` support) into it. If a file is given as its input directly (as in `wc -c < largefile`) the first strategy kicks in. Try `uucat somefile | wc -c`. ### Counting lines and UTF-8 characters