We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 824d0a4 commit ec7b5a3Copy full SHA for ec7b5a3
pages/linux/cat.md
@@ -15,14 +15,14 @@
15
16
`cat {{path/to/file1 path/to/file2 ...}} >> {{path/to/output_file}}`
17
18
-- Write `stdin` to a file:
+- Write to a file interactively:
19
20
-`cat - > {{path/to/file}}`
+`cat > {{path/to/file}}`
21
22
- Number all output lines:
23
24
`cat {{[-n|--number]}} {{path/to/file}}`
25
26
-- Display non-printable and whitespace characters (with `M-` prefix if non-ASCII):
+- Display all characters, including tabs, line endings, and non-printing characters:
27
28
-`cat {{[-vte|--show-nonprinting -t -e]}} {{path/to/file}}`
+`cat {{[-A|--show-all]}} {{path/to/file}}`
0 commit comments