github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/utils/man/test_cat.txt (about) 1 CAT(1) User Commands CAT(1) 2 3 NAME 4 cat - concatenate files and print on the standard output 5 6 SYNOPSIS 7 cat [OPTION]... [FILE]... 8 9 DESCRIPTION 10 Concatenate FILE(s) to standard output. 11 12 With no FILE, or when FILE is -, read standard input. 13 14 -A, --show-all 15 equivalent to -vET 16 17 -b, --number-nonblank 18 number nonempty output lines, overrides -n 19 20 -e equivalent to -vE 21 22 -E, --show-ends 23 display $ at end of each line 24 25 -n, --number 26 number all output lines 27 28 -s, --squeeze-blank 29 suppress repeated empty output lines 30 31 -t equivalent to -vT 32 33 -T, --show-tabs 34 display TAB characters as ˆI 35 36 -u (ignored) 37 38 -v, --show-nonprinting 39 use ˆ and M- notation, except for LFD and TAB 40 41 --help display this help and exit 42 43 --version 44 output version information and exit 45 46 EXAMPLES 47 cat f - g 48 Output f's contents, then standard input, then g's contents. 49 50 cat Copy standard input to standard output. 51 52 AUTHOR 53 Written by Torbjorn Granlund and Richard M. Stallman. 54 55 REPORTING BUGS 56 GNU coreutils online help: <https://www.gnu.org/software/coreutils/> 57 Report any translation bugs to <https://translationproject.org/team/> 58 59 COPYRIGHT 60 Copyright © 2023 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>. 61 This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. 62 63 SEE ALSO 64 tac(1) 65 66 Full documentation <https://www.gnu.org/software/coreutils/cat> 67 or available locally via: info '(coreutils) cat invocation' 68 69 GNU coreutils 9.3 April 2023 CAT(1)