-
Notifications
You must be signed in to change notification settings - Fork 0
/
Comandos_de_la_terminal%2Fcat.mw
143 lines (98 loc) · 2.56 KB
/
Comandos_de_la_terminal%2Fcat.mw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
__NOTOC__
* [[:#cat | cat]]
== cat ==
<syntaxhighlight lang="bash">
cat [OPTION]... [FILE]...
[rrc@Llawyr ~]$ cat CatArchivo
Hola
Esta es el archivo que vamos usar para
investigar el comando cat
Listo???
OK
[rrc@Llawyr ~]$ cat -n CatArchivo
1 Hola
2 Esta es el archivo que vamos usar para
3
4 investigar el comando cat
5
6
7
8 Listo???
9
10
11 OK
[rrc@Llawyr ~]$ cat -b CatArchivo
1 Hola
2 Esta es el archivo que vamos usar para
3 investigar el comando cat
4 Listo???
5 OK
[rrc@Llawyr ~]$ cat -E CatArchivo
Hola$
Esta es el archivo que vamos usar para$
$
investigar el comando cat$
$
$
$
Listo???$
$
$
OK$
[rrc@Llawyr ~]$ cat -s CatArchivo
Hola
Esta es el archivo que vamos usar para
investigar el comando cat
Listo???
OK
[rrc@Llawyr ~]$ cat CatArchivo2
Esta Archivo 2 a ver cat
OK
[rrc@Llawyr ~]$ cat CatArchivo3
Esta Archivo 3 a ver cat
OK
[rrc@Llawyr ~]$ cat CatArchivo2 CatArchivo3
Esta Archivo 2 a ver cat
OK
Esta Archivo 3 a ver cat
OK
[rrc@Llawyr ~]$ cat -n CatArchivo2 CatArchivo3
1 Esta Archivo 2 a ver cat
2
3 OK
4
5 Esta Archivo 3 a ver cat
6
7 OK
8
[rrc@Llawyr ~]$ cat CatArchivo2 CatArchivo3 > CatFile
[rrc@Llawyr ~]$ cat CatFile
Esta Archivo 2 a ver cat
OK
Esta Archivo 3 a ver cat
OK
[rrc@Llawyr ~]$ cat --help
Usage: cat [OPTION]... [FILE]...
Concatenate FILE(s), or standard input, to standard output.
-A, --show-all equivalent to -vET
-b, --number-nonblank number nonempty output lines, overrides -n
-e equivalent to -vE
-E, --show-ends display $ at end of each line
-n, --number number all output lines
-s, --squeeze-blank suppress repeated empty output lines
-t equivalent to -vT
-T, --show-tabs display TAB characters as ^I
-u (ignored)
-v, --show-nonprinting use ^ and M- notation, except for LFD and TAB
--help display this help and exit
--version output version information and exit
With no FILE, or when FILE is -, read standard input.
Examples:
cat f - g Output f's contents, then standard input, then g's contents.
cat Copy standard input to standard output.
Report cat bugs to [email protected]
GNU coreutils home page: <http://www.gnu.org/software/coreutils/>
General help using GNU software: <http://www.gnu.org/gethelp/>
For complete documentation, run: info coreutils 'cat invocation'
</syntaxhighlight>
[[Category:Comandos de la terminal]]