* src/cat.c (usage): Document the ^M$ combination which is output for \r\n line endings. Fixes https://github.com/coreutils/coreutils/issues/130 --- src/cat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/cat.c b/src/cat.c index 2a3c1d18a..6b8696863 100644 --- a/src/cat.c +++ b/src/cat.c @@ -101,7 +101,7 @@ Concatenate FILE(s) to standard output.\n\ -A, --show-all equivalent to -vET\n\ -b, --number-nonblank number nonempty output lines, overrides -n\n\ -e equivalent to -vE\n\ - -E, --show-ends display $ at end of each line\n\ + -E, --show-ends display $ or ^M$ at end of each line\n\ -n, --number number all output lines\n\ -s, --squeeze-blank suppress repeated empty output lines\n\ "), stdout); -- 2.51.1
