File: ioredirintro.html

package info (click to toggle)
abs-guide 10-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 6,960 kB
  • sloc: sh: 14,129; makefile: 81
file content (473 lines) | stat: -rw-r--r-- 8,946 bytes parent folder | download | duplicates (4)
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML
><HEAD
><TITLE
>A Detailed Introduction to I/O and I/O Redirection</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
"><LINK
REL="HOME"
TITLE="Advanced Bash-Scripting Guide"
HREF="index.html"><LINK
REL="PREVIOUS"
TITLE="Exit Codes With Special Meanings"
HREF="exitcodes.html"><LINK
REL="NEXT"
TITLE="Command-Line Options"
HREF="command-line-options.html"><META
HTTP-EQUIV="Content-Style-Type"
CONTENT="text/css"><LINK
REL="stylesheet"
HREF="common/kde-common.css"
TYPE="text/css"><META
HTTP-EQUIV="Content-Type"
CONTENT="text/html; charset=iso-8859-1"><META
HTTP-EQUIV="Content-Language"
CONTENT="en"><LINK
REL="stylesheet"
HREF="common/kde-localised.css"
TYPE="text/css"
TITLE="KDE-English"><LINK
REL="stylesheet"
HREF="common/kde-default.css"
TYPE="text/css"
TITLE="KDE-Default"></HEAD
><BODY
CLASS="APPENDIX"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#AA0000"
VLINK="#AA0055"
ALINK="#AA0000"
STYLE="font-family: sans-serif;"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="exitcodes.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="command-line-options.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="APPENDIX"
><H1
><A
NAME="IOREDIRINTRO"
></A
>Appendix F. A Detailed Introduction to I/O and I/O Redirection</H1
><P
><SPAN
CLASS="emphasis"
><I
CLASS="EMPHASIS"
>written by Stphane Chazelas, and revised
        by the document author</I
></SPAN
></P
><P
><A
NAME="STDINOUTDEF"
></A
></P
><P
>A command expects the first three <A
HREF="io-redirection.html#FDREF"
>file
        descriptors</A
> to be available. The first, <I
CLASS="FIRSTTERM"
>fd
        0</I
> (standard input, <TT
CLASS="FILENAME"
>stdin</TT
>),
        is for reading. The other two (<I
CLASS="FIRSTTERM"
>fd 1</I
>,
        <TT
CLASS="FILENAME"
>stdout</TT
> and <I
CLASS="FIRSTTERM"
>fd 2</I
>,
        <TT
CLASS="FILENAME"
>stderr</TT
>) are for writing.</P
><P
>There is a <TT
CLASS="FILENAME"
>stdin</TT
>, <TT
CLASS="FILENAME"
>stdout</TT
>,
        and a <TT
CLASS="FILENAME"
>stderr</TT
> associated with each command.
        <TT
CLASS="USERINPUT"
><B
>ls 2&#62;&#38;1</B
></TT
> means temporarily connecting the
        <TT
CLASS="FILENAME"
>stderr</TT
> of the <B
CLASS="COMMAND"
>ls</B
> command to the
        same <SPAN
CLASS="QUOTE"
>"resource"</SPAN
> as the shell's
        <TT
CLASS="FILENAME"
>stdout</TT
>.</P
><P
>By convention, a command reads its input from fd 0
        (<TT
CLASS="FILENAME"
>stdin</TT
>), prints normal output to fd
        1 (<TT
CLASS="FILENAME"
>stdout</TT
>), and error ouput to fd 2
        (<TT
CLASS="FILENAME"
>stderr</TT
>). If one of those three fd's is
        not open, you may encounter problems:</P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="SCREEN"
> <TT
CLASS="PROMPT"
>bash$ </TT
><TT
CLASS="USERINPUT"
><B
>cat /etc/passwd &#62;&#38;-</B
></TT
>
 <TT
CLASS="COMPUTEROUTPUT"
>cat: standard output: Bad file descriptor</TT
>
       </PRE
></TD
></TR
></TABLE
><P
>For example, when <B
CLASS="COMMAND"
>xterm</B
> runs, it first
        initializes itself.  Before running the user's shell,
        <B
CLASS="COMMAND"
>xterm</B
> opens the terminal device
        (/dev/pts/&#60;n&#62; or something similar) three times.</P
><P
>At this point, Bash inherits these three file descriptors,
        and each command (child process) run by Bash inherits
        them in turn, except when you redirect the command.  <A
HREF="io-redirection.html#IOREDIRREF"
>Redirection</A
> means reassigning
        one of the file descriptors to another file (or a pipe, or
        anything permissible). File descriptors may be reassigned
        locally (for a command, a command group, a <A
HREF="subshells.html#SUBSHELLSREF"
>subshell</A
>, a <A
HREF="redircb.html#REDIRREF"
>while or if or case or for loop</A
>...),
        or globally, for the remainder of the shell (using <A
HREF="internal.html#EXECREF"
>exec</A
>).</P
><P
><TT
CLASS="USERINPUT"
><B
>ls &#62; /dev/null</B
></TT
> means
        running <B
CLASS="COMMAND"
>ls</B
> with its fd 1 connected to
        <TT
CLASS="FILENAME"
>/dev/null</TT
>.</P
><P
>      <TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="SCREEN"
> <TT
CLASS="PROMPT"
>bash$ </TT
><TT
CLASS="USERINPUT"
><B
>lsof -a -p $$ -d0,1,2</B
></TT
>
 <TT
CLASS="COMPUTEROUTPUT"
>COMMAND PID     USER   FD   TYPE DEVICE SIZE NODE NAME
 bash    363 bozo        0u   CHR  136,1         3 /dev/pts/1
 bash    363 bozo        1u   CHR  136,1         3 /dev/pts/1
 bash    363 bozo        2u   CHR  136,1         3 /dev/pts/1</TT
>
 
 
 <TT
CLASS="PROMPT"
>bash$ </TT
><TT
CLASS="USERINPUT"
><B
>exec 2&#62; /dev/null</B
></TT
>
 <TT
CLASS="PROMPT"
>bash$ </TT
><TT
CLASS="USERINPUT"
><B
>lsof -a -p $$ -d0,1,2</B
></TT
>
 <TT
CLASS="COMPUTEROUTPUT"
>COMMAND PID     USER   FD   TYPE DEVICE SIZE NODE NAME
 bash    371 bozo        0u   CHR  136,1         3 /dev/pts/1
 bash    371 bozo        1u   CHR  136,1         3 /dev/pts/1
 bash    371 bozo        2w   CHR    1,3       120 /dev/null</TT
>
 
 
 <TT
CLASS="PROMPT"
>bash$ </TT
><TT
CLASS="USERINPUT"
><B
>bash -c 'lsof -a -p $$ -d0,1,2' | cat</B
></TT
>
 <TT
CLASS="COMPUTEROUTPUT"
>COMMAND PID USER   FD   TYPE DEVICE SIZE NODE NAME
 lsof    379 root    0u   CHR  136,1         3 /dev/pts/1
 lsof    379 root    1w  FIFO    0,0      7118 pipe
 lsof    379 root    2u   CHR  136,1         3 /dev/pts/1</TT
>
 
 
 <TT
CLASS="PROMPT"
>bash$ </TT
><TT
CLASS="USERINPUT"
><B
>echo "$(bash -c 'lsof -a -p $$ -d0,1,2' 2&#62;&#38;1)"</B
></TT
>
 <TT
CLASS="COMPUTEROUTPUT"
>COMMAND PID USER   FD   TYPE DEVICE SIZE NODE NAME
 lsof    426 root    0u   CHR  136,1         3 /dev/pts/1
 lsof    426 root    1w  FIFO    0,0      7520 pipe
 lsof    426 root    2w  FIFO    0,0      7520 pipe</TT
></PRE
></TD
></TR
></TABLE
></P
><P
>This works for different types of redirection.</P
><P
><TT
CLASS="USERINPUT"
><B
>Exercise:</B
></TT
> Analyze the following script.

<TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="PROGRAMLISTING"
>   1&nbsp;#! /usr/bin/env bash
   2&nbsp;
   3&nbsp;mkfifo /tmp/fifo1 /tmp/fifo2
   4&nbsp;while read a; do echo "FIFO1: $a"; done &#60; /tmp/fifo1 &#38; exec 7&#62; /tmp/fifo1
   5&nbsp;exec 8&#62; &#62;(while read a; do echo "FD8: $a, to fd7"; done &#62;&#38;7)
   6&nbsp;
   7&nbsp;exec 3&#62;&#38;1
   8&nbsp;(
   9&nbsp; (
  10&nbsp;  (
  11&nbsp;   while read a; do echo "FIFO2: $a"; done &#60; /tmp/fifo2 | tee /dev/stderr \
  12&nbsp;   | tee /dev/fd/4 | tee /dev/fd/5 | tee /dev/fd/6 &#62;&#38;7 &#38; exec 3&#62; /tmp/fifo2
  13&nbsp;
  14&nbsp;   echo 1st, to stdout
  15&nbsp;   sleep 1
  16&nbsp;   echo 2nd, to stderr &#62;&#38;2
  17&nbsp;   sleep 1
  18&nbsp;   echo 3rd, to fd 3 &#62;&#38;3
  19&nbsp;   sleep 1
  20&nbsp;   echo 4th, to fd 4 &#62;&#38;4
  21&nbsp;   sleep 1
  22&nbsp;   echo 5th, to fd 5 &#62;&#38;5
  23&nbsp;   sleep 1
  24&nbsp;   echo 6th, through a pipe | sed 's/.*/PIPE: &#38;, to fd 5/' &#62;&#38;5
  25&nbsp;   sleep 1
  26&nbsp;   echo 7th, to fd 6 &#62;&#38;6
  27&nbsp;   sleep 1
  28&nbsp;   echo 8th, to fd 7 &#62;&#38;7
  29&nbsp;   sleep 1
  30&nbsp;   echo 9th, to fd 8 &#62;&#38;8
  31&nbsp;
  32&nbsp;  ) 4&#62;&#38;1 &#62;&#38;3 3&#62;&#38;- | while read a; do echo "FD4: $a"; done 1&#62;&#38;3 5&#62;&#38;- 6&#62;&#38;-
  33&nbsp; ) 5&#62;&#38;1 &#62;&#38;3 | while read a; do echo "FD5: $a"; done 1&#62;&#38;3 6&#62;&#38;-
  34&nbsp;) 6&#62;&#38;1 &#62;&#38;3 | while read a; do echo "FD6: $a"; done 3&#62;&#38;-
  35&nbsp;
  36&nbsp;rm -f /tmp/fifo1 /tmp/fifo2
  37&nbsp;
  38&nbsp;
  39&nbsp;# For each command and subshell, figure out which fd points to what.
  40&nbsp;# Good luck!
  41&nbsp;
  42&nbsp;exit 0</PRE
></TD
></TR
></TABLE
>
      </P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="exitcodes.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="command-line-options.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>Exit Codes With Special Meanings</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
>&nbsp;</TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>Command-Line Options</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>