* doc/coreutils.texi(cut invocation): Give a more accurate description
of cut field handling limitations.
* tests/misc/stat-fmt.sh: Fix the test header to be more general.
* tests/tail-2/retry.sh: Spellings.
@option{--only-delimited} (@option{-s}) option is specified.
Note @command{awk} supports more sophisticated field processing,
-like reordering fields, and handling non fixed width fields.
+like reordering fields, and handling fields aligned with blank characters.
By default @command{awk} uses (and discards) runs of blank characters
to separate fields, and ignores leading and trailing blanks.
@example
#!/bin/sh
-# ensure that stat properly handles a format string ending with %
+# stat --format tests
# Copyright (C) 2003-2016 Free Software Foundation, Inc.
test "$out" = "$fmt" || fail=1
done
+
# ensure QUOTING_STYLE is honored by %N
touch "'" || framework_failure_
# Default since v8.25
grep -F 'no files remaining' out || { fail=1; cat out; }
# === Test:
-# Ensure that tail -F retries when the file is initally untailable.
+# Ensure that tail -F retries when the file is initially untailable.
mkdir untailable
timeout 10 \
tail $mode $fastpoll -F untailable >out 2>&1 & pid=$!