-
Notifications
You must be signed in to change notification settings - Fork 0
/
Comandos_de_la_terminal%2FRederección.mw
164 lines (146 loc) · 3.78 KB
/
Comandos_de_la_terminal%2FRederección.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
__NOTOC__
* [[:#Rederección | Rederección]]
== Rederección ==
<syntaxhighlight lang="bash">
Existe STDIN dispositivo 0 Normalmente el teclado
STDOUT dispositivo 1 Normalmente la pantalla
STDERR Dispositivo 2 Normalmente la pantalla
Puede redireccionar STDIN con '<'
Puede redireccionar STDOUT con '>'
Puede redireccionar STDERR con '>'
Puede anexar al destino de redireccion con '>>"
[rrc@Llawyr ~]$ ls LinuxCabal/
AC/ DrenajesPuertaAbogado.odt OtroLado/
AztecaFiscal/ Expidiente717-2005.txt Presentaciones/
BluePrints/ Factura.jpg Propuestas/
Cafeteria/ Flyers/ SAT/
Clases/ INM/ SigLCCom
CLUNI/ JohnLinCharacterRef.odt SigLCOrg
CoffeeNet/ JohnLinCharacterRef.pdf StationaryAndForms/
Constancias/ JohnLinCharacterRef_Pg1.jpg TarjetaDePres/
Construccion/ JohnLinCharacterRef_Pg2.jpg Triptico/
Curriculo/ Lenovo/ WineLabels/
[rrc@Llawyr ~]$ ls LinuxCabal > LSList
[rrc@Llawyr ~]$ cat LSList
AC/
AztecaFiscal/
BluePrints/
Cafeteria/
Clases/
CLUNI/
CoffeeNet/
Constancias/
Construccion/
Curriculo/
DrenajesPuertaAbogado.odt
Expidiente717-2005.txt
Factura.jpg
Flyers/
INM/
JohnLinCharacterRef.odt
JohnLinCharacterRef.pdf
JohnLinCharacterRef_Pg1.jpg
JohnLinCharacterRef_Pg2.jpg
Lenovo/
OtroLado/
Presentaciones/
Propuestas/
SAT/
SigLCCom
SigLCOrg
StationaryAndForms/
TarjetaDePres/
Triptico/
WineLabels/
[rrc@Llawyr ~]$ ls LinuxCabal/Presentaciones > LSList
[rrc@Llawyr ~]$ cat LSList
Asterisk/
Bash/
DHCP/
InstallMandriva/
InstallMDK2010.0/
LSComando*
MurosContrafuegos/
OpenSSH/
OpenVPN/
PPPoE/
QoS/
Squid/
[rrc@Llawyr ~]$ ls LinuxCabal >> LSList
[rrc@Llawyr ~]$ cat LSList
Asterisk/
Bash/
DHCP/
InstallMandriva/
InstallMDK2010.0/
LSComando*
MurosContrafuegos/
OpenSSH/
OpenVPN/
PPPoE/
QoS/
Squid/
AC/
AztecaFiscal/
BluePrints/
Cafeteria/
Clases/
CLUNI/
CoffeeNet/
Constancias/
Construccion/
Curriculo/
DrenajesPuertaAbogado.odt
Expidiente717-2005.txt
Factura.jpg
Flyers/
INM/
JohnLinCharacterRef.odt
JohnLinCharacterRef.pdf
JohnLinCharacterRef_Pg1.jpg
JohnLinCharacterRef_Pg2.jpg
Lenovo/
OtroLado/
Presentaciones/
Propuestas/
SAT/
SigLCCom
SigLCOrg
StationaryAndForms/
TarjetaDePres/
Triptico/
WineLabels/
Puede borrar los contenidos de un archivo usand '>'
[rrc@Llawyr ~]$ > LSList
[rrc@Llawyr ~]$ cat LSList
[rrc@Llawyr ~]$ ls -alh LSList
-rw------- 1 rrc rrc 0 Nov 15 13:39 LSList
[rrc@Llawyr ComandosDeLaTerminal]$ cat MiArchivo
cat: MiArchivo: No such file or directory
[rrc@Llawyr ComandosDeLaTerminal]$ cat MiArchivo 2> MiArchivo.Err
[rrc@Llawyr ComandosDeLaTerminal]$ cat MiArchivo.Err
cat: MiArchivo: No such file or directory
[rrc@Llawyr ComandosDeLaTerminal]$ echo "Está algunas palabras" > MiArchivo
[rrc@Llawyr ComandosDeLaTerminal]$ cat MiArchivo MiOtroArchivo 2> MiArchivo.Err
Está algunas palabras
[rrc@Llawyr ComandosDeLaTerminal]$ cat MiArchivo.Err
cat: MiOtroArchivo: No such file or directory
[rrc@Llawyr ComandosDeLaTerminal]$ cat MiArchivo MiOtroArchivo MiTercerArchivo > Resulto
cat: MiOtroArchivo: No such file or directory
cat: MiTercerArchivo: No such file or directory
[rrc@Llawyr ComandosDeLaTerminal]$ cat Resulto
Está algunas palabras
[rrc@Llawyr ComandosDeLaTerminal]$ cat MiArchivo ElQueNoExiste > Res2 2>Err3
[rrc@Llawyr ComandosDeLaTerminal]$ cat Res
Res2 Resulto
[rrc@Llawyr ComandosDeLaTerminal]$ cat Res2
Está algunas palabras
[rrc@Llawyr ComandosDeLaTerminal]$ cat Err3
cat: ElQueNoExiste: No such file or directory
[rrc@Llawyr ComandosDeLaTerminal]$ cat MiArchivo MiOtroArchivo MiTercerArchivo > Resulto 2>&1
[rrc@Llawyr ComandosDeLaTerminal]$ cat Resulto
Está algunas palabras
cat: MiOtroArchivo: No such file or directory
cat: MiTercerArchivo: No such file or directory
</syntaxhighlight>
[[Category:Comandos de la terminal]]