aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/doc/src/io.xml
blob: 4655c8662fc41fdb157c8a6050942dbbc2cc7fe2 (plain) (blame)
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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<erlref>
  <header>
    <copyright>
      <year>1996</year><year>2013</year>
      <holder>Ericsson AB. All Rights Reserved.</holder>
    </copyright>
    <legalnotice>
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
      You may obtain a copy of the License at
 
          http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      See the License for the specific language governing permissions and
      limitations under the License.

    </legalnotice>

    <title>io</title>
    <prepared></prepared>
    <docno></docno>
    <date></date>
    <rev></rev>
  </header>
  <module>io</module>
  <modulesummary>Standard I/O Server Interface Functions</modulesummary>
  <description>
    <p>This module provides an interface to standard Erlang I/O servers.
      The output functions all return <c>ok</c> if they are successful,
      or exit if they are not.</p>
    <p>In the following description, all functions have an optional
      parameter <c>IoDevice</c>. If included, it must be the pid of a
      process which handles the IO protocols. Normally, it is the
      <c>IoDevice</c> returned by
      <seealso marker="kernel:file#open/2">file:open/2</seealso>.</p>
    <p>For a description of the IO protocols refer to the <seealso marker="io_protocol">STDLIB User's Guide</seealso>.</p>
    <warning>

    <p>As of R13A, data supplied to the <seealso
    marker="#put_chars/2">put_chars</seealso> function should be in the
    <seealso marker="unicode#type-chardata"><c>unicode:chardata()</c></seealso> format. This means that programs
    supplying binaries to this function need to convert them to UTF-8
    before trying to output the data on an IO device.</p>

    <p>If an IO device is set in binary mode, the functions <seealso
    marker="#get_chars/3">get_chars</seealso> and <seealso
    marker="#get_line/2">get_line</seealso> may return binaries
    instead of lists. The binaries will, as of R13A, be encoded in
    UTF-8.</p>

    <p>To work with binaries in ISO-latin-1 encoding, use the <seealso
    marker="kernel:file">file</seealso> module instead.</p>

    <p>For conversion functions between character encodings, see the <seealso
    marker="stdlib:unicode">unicode</seealso> module.</p>

    </warning>

  </description>

  <datatypes>
    <datatype>
      <name name="device"/>
      <desc>
        <p>An IO device. Either <c>standard_io</c>, <c>standard_error</c>, a
          registered name, or a pid handling IO protocols (returned from
          <seealso marker="kernel:file#open/2">file:open/2</seealso>).</p>
      </desc>
    </datatype>
    <datatype>
      <name name="opt_pair"/>
    </datatype>
    <datatype>
      <name name="expand_fun"/>
    </datatype>
    <datatype>
      <name name="encoding"/>
    </datatype>
    <datatype>
      <name name="setopt"/>
    </datatype>
    <datatype>
      <name name="format"/>
    </datatype>
    <datatype>
      <name name="location"/>
    </datatype>
    <datatype>
      <name name="prompt"/>
    </datatype>
    <datatype>
      <name name="server_no_data"/>
      <desc><p>What the I/O-server sends when there is no data.</p></desc>
    </datatype>
  </datatypes>

  <funcs>
    <func>
      <name name="columns" arity="0"/>
      <name name="columns" arity="1"/>
      <fsummary>Get the number of columns of an IO device</fsummary>
      <desc>
          <p>Retrieves the number of columns of the 
          <c><anno>IoDevice</anno></c> (i.e. the width of a terminal). The function
          only succeeds for terminal devices, for all other IO devices
          the function returns <c>{error, enotsup}</c></p>
      </desc>
    </func>
    <func>
      <name name="put_chars" arity="1"/>
      <name name="put_chars" arity="2"/>
      <fsummary>Write a list of characters</fsummary>
      <desc>
        <p>Writes the characters of <c><anno>CharData</anno></c> to the I/O server
          (<c><anno>IoDevice</anno></c>).</p>
      </desc>
    </func>
    <func>
      <name name="nl" arity="0"/>
      <name name="nl" arity="1"/>
      <fsummary>Write a newline</fsummary>
      <desc>
        <p>Writes new line to the standard output (<c><anno>IoDevice</anno></c>).</p>
      </desc>
    </func>
    <func>
      <name name="get_chars" arity="2"/>
      <name name="get_chars" arity="3"/>
      <fsummary>Read a specified number of characters</fsummary>
      <type name="server_no_data"/>
      <desc>
        <p>Reads <c><anno>Count</anno></c> characters from standard input
          (<c><anno>IoDevice</anno></c>), prompting it with <c><anno>Prompt</anno></c>. It
          returns:</p>
        <taglist>
          <tag><c><anno>Data</anno></c></tag>
          <item>
            <p>The input characters. If the IO device supports Unicode,
            the data may represent codepoints larger than 255 (the
            latin1 range). If the I/O server is set to deliver
            binaries, they will be encoded in UTF-8 (regardless of if
            the IO device actually supports Unicode or not).</p>
          </item>
          <tag><c>eof</c></tag>
          <item>
            <p>End of file was encountered.</p>
          </item>
	  <tag><c>{error, <anno>ErrorDescription</anno>}</c></tag>
	  <item>
	    <p>Other (rare) error condition, for instance <c>{error, estale}</c>
	    if reading from an NFS file system.</p>
	  </item>
        </taglist>
      </desc>
    </func>
    <func>
      <name name="get_line" arity="1"/>
      <name name="get_line" arity="2"/>
      <fsummary>Read a line</fsummary>
      <type name="server_no_data"/>
      <desc>
        <p>Reads a line from the standard input (<c><anno>IoDevice</anno></c>),
          prompting it with <c><anno>Prompt</anno></c>. It returns:</p>
        <taglist>
          <tag><c><anno>Data</anno></c></tag>
          <item>
            <p>The characters in the line terminated by a LF (or end of
              file). If the IO device supports Unicode,
            the data  may represent codepoints larger than 255 (the
            latin1 range). If the I/O server is set to deliver
            binaries, they will be encoded in UTF-8 (regardless of if
            the IO device actually supports Unicode or not).</p>
          </item>
          <tag><c>eof</c></tag>
          <item>
            <p>End of file was encountered.</p>
          </item>
	  <tag><c>{error, <anno>ErrorDescription</anno>}</c></tag>
	  <item>
	    <p>Other (rare) error condition, for instance <c>{error, estale}</c>
	    if reading from an NFS file system.</p>
	  </item>
        </taglist>
      </desc>
    </func>
    <func>
      <name name="getopts" arity="0"/>
      <name name="getopts" arity="1"/>
      <fsummary>Get the supported options and values from an I/O-server</fsummary>
      <desc>
      <p>This function requests all available options and their current values for a specific IO device. Example:</p>
<pre>
1> <input>{ok,F} = file:open("/dev/null",[read]).</input>
{ok,&lt;0.42.0&gt;}
2> <input>io:getopts(F).</input>
[{binary,false},{encoding,latin1}]</pre>
      <p>Here the file I/O-server returns all available options for a file,
      which are the expected ones, <c>encoding</c> and <c>binary</c>. The standard shell however has some more options:</p>
<pre>
3> io:getopts().
[{expand_fun,#Fun&lt;group.0.120017273&gt;},
 {echo,true},
 {binary,false},
 {encoding,unicode}]</pre>
      <p>This example is, as can be seen, run in an environment where the terminal supports Unicode input and output.</p>
      </desc>
    </func>
    <func>
      <name name="printable_range" arity="0"/>
      <fsummary>Get user requested printable character range</fsummary>
      <desc>
	<p>Return the user requested range of printable Unicode characters.</p>
	<p>The user can request a range of characters that are to be considered printable in heuristic detection of strings by the shell and by the formatting functions. This is done by supplying <c>+pc &lt;range&gt;</c> when starting Erlang.</p>
	<p>Currently the only valid values for <c>&lt;range&gt;</c> are <c>latin1</c> and <c>unicode</c>. <c>latin1</c> means that only code points below 256 (with the exception of control characters etc) will be considered printable. <c>unicode</c> means that all printable characters in all unicode character ranges are considered printable by the io functions.</p>
	<p>By default, Erlang is started so that only the <c>latin1</c> range of characters will indicate that a list of integers is a string.</p>
	<p>The simplest way to utilize the setting is to call <seealso marker="io_lib#printable_list/1">io_lib:printable_list/1</seealso>, which will use the return value of this function to decide if a list is a string of printable characters or not.</p>
	<note><p>In the future, this function may return more values and ranges. It is recommended to use the io_lib:printable_list/1 function to avoid compatibility problems.</p></note>
      </desc>
    </func>
    <func>
      <name name="setopts" arity="1"/>
      <name name="setopts" arity="2"/>
      <fsummary>Set options</fsummary>
      <desc>
        <p>Set options for the standard IO device (<c><anno>IoDevice</anno></c>).</p>

        <p>Possible options and values vary depending on the actual
        IO device. For a list of supported options and their current values
        on a specific IO device, use the <seealso
        marker="#getopts/1">getopts/1</seealso> function.</p>

	<p>The options and values supported by the current OTP IO devices are:</p>
        <taglist>
          <tag><c>binary, list or {binary, boolean()}</c></tag>
          <item>
            <p>If set in binary mode (<c>binary</c> or <c>{binary, true}</c>), the I/O server sends binary data (encoded in UTF-8) as answers to the <c>get_line</c>, <c>get_chars</c> and, if possible, <c>get_until</c> requests (see the I/O protocol description in <seealso marker="io_protocol">STDLIB User's Guide</seealso> for details). The immediate effect is that <c>get_chars/2,3</c> and <c>get_line/1,2</c> return UTF-8 binaries instead of lists of chars for the affected IO device.</p>
	    <p>By default, all IO devices in OTP are set in list mode, but the I/O functions can handle any of these modes and so should other, user written, modules behaving as clients to I/O-servers.</p>
	    <p>This option is supported by the standard shell (<c>group.erl</c>), the 'oldshell' (<c>user.erl</c>) and the file I/O servers.</p>
          </item>
          <tag><c>{echo, boolean()}</c></tag>
	  <item>
	  <p>Denotes if the terminal should echo input. Only supported for the standard shell I/O-server (<c>group.erl</c>)</p>
	  </item>
          <tag><c>{expand_fun, expand_fun()}</c></tag>
          <item>
            <p>Provide a function for tab-completion (expansion)
              like the Erlang shell. This function is called
              when the user presses the TAB key. The expansion is
              active when calling line-reading functions such as
              <c>get_line/1,2</c>.</p>
            <p>The function is called with the current line, upto
              the cursor, as a reversed string. It should return a
              three-tuple: <c>{yes|no, string(), [string(), ...]}</c>. The
              first element gives a beep if <c>no</c>, otherwise the
              expansion is silent, the second is a string that will be
              entered at the cursor position, and the third is a list of
              possible expansions. If this list is non-empty, the list
              will be printed and the current input line will be written
              once again.</p>
            <p>Trivial example (beep on anything except empty line, which
              is expanded to <c>"quit"</c>):</p>
            <code type="none">
 fun("") -> {yes, "quit", []};
    (_) -> {no, "", ["quit"]} end</code>
            <p>This option is supported by the standard shell only (<c>group.erl</c>).</p>
          </item>
          <tag><c>{encoding, latin1 | unicode}</c></tag>
	  <item>
	  <p>Specifies how characters are input or output from or to the actual IO device, implying that i.e. a terminal is set to handle Unicode input and output or a file is set to handle UTF-8 data encoding.</p>
	  <p>The option <em>does not</em> affect how data is returned from the I/O functions or how it is sent in the I/O-protocol, it only affects how the IO device is to handle Unicode characters towards the &quot;physical&quot; device.</p>
	  <p>The standard shell will be set for either Unicode or latin1 encoding when the system is started. The actual encoding is set with the help of the <c>LANG</c> or <c>LC_CTYPE</c> environment variables on Unix-like system or by other means on other systems. The bottom line is that the user can input Unicode characters and the IO device will be in <c>{encoding, unicode}</c> mode if the IO device supports it. The mode can be changed, if the assumption of the runtime system is wrong, by setting this option.</p>
	  <p>The IO device used when Erlang is started with the "-oldshell" or "-noshell" flags is by default set to latin1 encoding, meaning that any characters beyond codepoint 255 will be escaped and that input is expected to be plain 8-bit ISO-latin-1. If the encoding is changed to Unicode, input and output from the standard file descriptors will be in UTF-8 (regardless of operating system).</p>
	  <p>Files can also be set in <c>{encoding, unicode}</c>, meaning that data is written and read as UTF-8. More encodings are possible for files, see below.</p>
	  <p><c>{encoding, unicode | latin1}</c> is supported by both the standard shell (<c>group.erl</c> including <c>werl</c> on Windows&reg;), the 'oldshell' (<c>user.erl</c>) and the file I/O servers.</p>
 	  </item>
          <tag><c>{encoding, utf8 | utf16 | utf32 | {utf16,big} | {utf16,little} | {utf32,big} | {utf32,little}}</c></tag>
	  <item>
	  <p>For disk files, the encoding can be set to various UTF variants. This will have the effect that data is expected to be read as the specified encoding from the file and the data will be written in the specified encoding to the disk file.</p>
	  <p><c>{encoding, utf8}</c> will have the same effect as <c>{encoding, unicode}</c> on files.</p>
	  <p>The extended encodings are only supported on disk files (opened by the <seealso marker="kernel:file#open/2">file:open/2</seealso> function)</p>
 	  </item>
        </taglist>
      </desc>
    </func>
    <func>
      <name name="write" arity="1"/>
      <name name="write" arity="2"/>
      <fsummary>Write a term</fsummary>
      <desc>
        <p>Writes the term <c><anno>Term</anno></c> to the standard output
          (<c><anno>IoDevice</anno></c>).</p>
      </desc>
    </func>
    <func>
      <name name="read" arity="1"/>
      <name name="read" arity="2"/>
      <fsummary>Read a term</fsummary>
      <type name="server_no_data"/>
      <desc>
        <p>Reads a term <c><anno>Term</anno></c> from the standard input
          (<c><anno>IoDevice</anno></c>), prompting it with <c><anno>Prompt</anno></c>. It
          returns:</p>
        <taglist>
          <tag><c>{ok, <anno>Term</anno>}</c></tag>
          <item>
            <p>The parsing was successful.</p>
          </item>
          <tag><c>eof</c></tag>
          <item>
            <p>End of file was encountered.</p>
          </item>
          <tag><c>{error, <anno>ErrorInfo</anno>}</c></tag>
          <item>
            <p>The parsing failed.</p>
          </item>
	  <tag><c>{error, <anno>ErrorDescription</anno>}</c></tag>
	  <item>
	    <p>Other (rare) error condition, for instance <c>{error, estale}</c>
	    if reading from an NFS file system.</p>
	  </item>
        </taglist>
      </desc>
    </func>
    <func>
      <name name="read" arity="3"/>
      <name name="read" arity="4"/>
      <fsummary>Read a term</fsummary>
      <type name="server_no_data"/>
      <desc>
        <p>Reads a term <c><anno>Term</anno></c> from <c><anno>IoDevice</anno></c>, prompting it
          with <c><anno>Prompt</anno></c>. Reading starts at location
          <c><anno>StartLocation</anno></c>. The argument
          <c><anno>Options</anno></c> is passed on as the <c>Options</c>
          argument of the <c>erl_scan:tokens/4</c> function. It returns:</p>
        <taglist>
          <tag><c>{ok, Term, <anno>EndLocation</anno>}</c></tag>
          <item>
            <p>The parsing was successful.</p>
          </item>
          <tag><c>{eof, <anno>EndLocation</anno>}</c></tag>
          <item>
            <p>End of file was encountered.</p>
          </item>
          <tag><c>{error, <anno>ErrorInfo</anno>, <anno>ErrorLocation</anno>}</c></tag>
          <item>
            <p>The parsing failed.</p>
          </item>
	  <tag><c>{error, <anno>ErrorDescription</anno>}</c></tag>
	  <item>
	    <p>Other (rare) error condition, for instance <c>{error, estale}</c>
	    if reading from an NFS file system.</p>
	  </item>
        </taglist>
      </desc>
    </func>
    <func>
      <name name="fwrite" arity="1"/>
      <name name="fwrite" arity="2"/>
      <name name="fwrite" arity="3"/>
      <name name="format" arity="1"/>
      <name name="format" arity="2"/>
      <name name="format" arity="3"/>
      <fsummary>Write formatted output</fsummary>
      <desc>
        <p>Writes the items in <c><anno>Data</anno></c> (<c>[]</c>) on the standard
          output (<c><anno>IoDevice</anno></c>) in accordance with <c><anno>Format</anno></c>.
          <c><anno>Format</anno></c> contains plain characters which are copied to
          the output device, and control sequences for formatting, see
          below. If <c><anno>Format</anno></c> is an atom or a binary, it is first
          converted to a list with the aid of <c>atom_to_list/1</c>
          or <c>binary_to_list/1</c>.</p>
        <pre>
1> <input>io:fwrite("Hello world!~n", []).</input>
Hello world!
ok</pre>
        <p>The general format of a control sequence is <c>~F.P.PadModC</c>.
          The character <c>C</c> determines the type of control sequence
          to be used, <c>F</c> and <c>P</c> are optional numeric
          arguments. If <c>F</c>, <c>P</c>, or <c>Pad</c> is <c>*</c>,
          the next argument in <c>Data</c> is used as the numeric value
          of <c>F</c> or <c>P</c>.</p>
        <p><c>F</c> is the <c>field width</c> of the printed argument. A
          negative value means that the argument will be left justified
          within the field, otherwise it will be right justified. If no
          field width is specified, the required print width will be
          used. If the field width specified is too small, then the
          whole field will be filled with <c>*</c> characters.</p>
        <p><c>P</c> is the <c>precision</c> of the printed argument. A
          default value is used if no precision is specified. The
          interpretation of precision depends on the control sequences.
          Unless otherwise specified, the argument <c>within</c> is used
          to determine print width.</p>
        <p><c>Pad</c> is the padding character. This is the character
          used to pad the printed representation of the argument so that
          it conforms to the specified field width and precision. Only
          one padding character can be specified and, whenever
          applicable, it is used for both the field width and precision.
          The default padding character is <c>' '</c> (space).</p>
        <p><c>Mod</c> is the control sequence modifier. It is either a
          single character (currently only <c>t</c>, for Unicode
          translation, and <c>l</c>, for stopping <c>p</c> and
          <c>P</c> from detecting printable characters, are supported)
          that changes the interpretation of Data.</p>
        <p>The following control sequences are available:</p>
        <taglist>
          <tag><c>~</c></tag>
          <item>
            <p>The character <c>~</c> is written.</p>
          </item>
          <tag><c>c</c></tag>
          <item>
            <p>The argument is a number that will be interpreted as an
              ASCII code. The precision is the number of times the
              character is printed and it defaults to the field width,
              which in turn defaults to 1. The following example
              illustrates:</p>
            <pre>
1> <input>io:fwrite("|~10.5c|~-10.5c|~5c|~n", [$a, $b, $c]).</input>
|     aaaaa|bbbbb     |ccccc|
ok</pre>
            <p>If the Unicode translation modifier (<c>t</c>) is in effect,
	    the integer argument can be any number representing a
	    valid Unicode codepoint, otherwise it should be an integer
	    less than or equal to 255, otherwise it is masked with 16#FF:</p>
<pre>
2> <input>io:fwrite("~tc~n",[1024]).</input>
\x{400}
ok
3> <input>io:fwrite("~c~n",[1024]).</input>
^@
ok</pre>

          </item>
          <tag><c>f</c></tag>
          <item>
            <p>The argument is a float which is written as
              <c>[-]ddd.ddd</c>, where the precision is the number of
              digits after the decimal point. The default precision is 6
              and it cannot be less than 1.</p>
          </item>
          <tag><c>e</c></tag>
          <item>
            <p>The argument is a float which is written as
              <c>[-]d.ddde+-ddd</c>, where the precision is the number
              of digits written. The default precision is 6 and it
              cannot be less than 2.</p>
          </item>
          <tag><c>g</c></tag>
          <item>
            <p>The argument is a float which is written as <c>f</c>, if
              it is &gt;= 0.1 and &lt; 10000.0. Otherwise, it is written
              in the <c>e</c> format. The precision is the number of
              significant digits. It defaults to 6 and should not be
              less than 2. If the absolute value of the float does not
              allow it to be written in the <c>f</c> format with the
              desired number of significant digits, it is also written
              in the <c>e</c> format.</p>
          </item>
          <tag><c>s</c></tag>
          <item>
            <p>Prints the argument with the string syntax. The
              argument is, if no Unicode translation modifier is present, an 
              <c>iolist()</c>, a <c>binary()</c>, or an <c>atom()</c>.
              If the Unicode translation modifier (<c>t</c>) is in effect,
              the argument is <c>unicode:chardata()</c>, meaning that
              binaries are in UTF-8. The characters
              are printed without quotes. The string is first truncated
	      by the given precision and then padded and justified
	      to the given field width. The default precision is the field width.</p>
            <p>This format can be used for printing any object and
              truncating the output so it fits a specified field:</p>
            <pre>
1> <input>io:fwrite("|~10w|~n", [{hey, hey, hey}]).</input>
|**********|
ok
2> <input>io:fwrite("|~10s|~n", [io_lib:write({hey, hey, hey})]).</input>
|{hey,hey,h|
3> <input>io:fwrite("|~-10.8s|~n", [io_lib:write({hey, hey, hey})]).</input>
|{hey,hey  |
ok</pre>
          <p>A list with integers larger than 255 is considered an error if the Unicode translation modifier is not given:</p>
<pre>
4> <input>io:fwrite("~ts~n",[[1024]]).</input>
\x{400}
ok
5> <input>io:fwrite("~s~n",[[1024]]).</input>
** exception exit: {badarg,[{io,format,[&lt;0.26.0&gt;,"~s~n",[[1024]]]},
   ...</pre>
          </item>
          <tag><c>w</c></tag>
          <item>
            <p>Writes data with the standard syntax. This is used to
              output Erlang terms. Atoms are printed within quotes if
              they contain embedded non-printable characters, and
              floats are printed accurately as the shortest, correctly
              rounded string.</p>
          </item>
          <tag><c>p</c></tag>
          <item>
            <p>Writes the data with standard syntax in the same way as
              <c>~w</c>, but breaks terms whose printed representation
              is longer than one line into many lines and indents each
              line sensibly. Left justification is not supported.
              It also tries to detect lists of
              printable characters and to output these as strings. The
              Unicode translation modifier is used for determining
              what characters are printable. For example:</p>
            <pre>
1> <input>T = [{attributes,[[{id,age,1.50000},{mode,explicit},</input>
<input>{typename,"INTEGER"}], [{id,cho},{mode,explicit},{typename,'Cho'}]]},</input>
<input>{typename,'Person'},{tag,{'PRIVATE',3}},{mode,implicit}].</input>
...
2> <input>io:fwrite("~w~n", [T]).</input>
[{attributes,[[{id,age,1.5},{mode,explicit},{typename,
[73,78,84,69,71,69,82]}],[{id,cho},{mode,explicit},{typena
me,'Cho'}]]},{typename,'Person'},{tag,{'PRIVATE',3}},{mode
,implicit}]
ok
3> <input>io:fwrite("~62p~n", [T]).</input>
[{attributes,[[{id,age,1.5},
               {mode,explicit},
               {typename,"INTEGER"}],
              [{id,cho},{mode,explicit},{typename,'Cho'}]]},
 {typename,'Person'},
 {tag,{'PRIVATE',3}},
 {mode,implicit}]
ok</pre>
            <p>The field width specifies the maximum line length. It
              defaults to 80. The precision specifies the initial
              indentation of the term. It defaults to the number of
              characters printed on this line in the <c>same</c> call to
              <c>io:fwrite</c> or <c>io:format</c>. For example, using
              <c>T</c> above:</p>
            <pre>
4> <input>io:fwrite("Here T = ~62p~n", [T]).</input>
Here T = [{attributes,[[{id,age,1.5},
                        {mode,explicit},
                        {typename,"INTEGER"}],
                       [{id,cho},
                        {mode,explicit},
                        {typename,'Cho'}]]},
          {typename,'Person'},
          {tag,{'PRIVATE',3}},
          {mode,implicit}]
ok</pre>
            <p>When the modifier <c>l</c> is given no detection of
              printable character lists will take place. For example:</p>
            <pre>
5> <input>S = [{a,"a"}, {b, "b"}].</input>
6> <input>io:fwrite("~15p~n", [S]).</input>
[{a,"a"},
 {b,"b"}]
ok
7> <input>io:fwrite("~15lp~n", [S]).</input>
[{a,[97]},
 {b,[98]}]
ok</pre>
            <p>Binaries that look like UTF-8 encoded strings will be
              output with the string syntax if the Unicode translation
              modifier is given:</p>
            <pre>
9> <input>io:fwrite("~p~n",[[1024]]).</input>
[1024]
10> <input>io:fwrite("~tp~n",[[1024]]).</input>
"\x{400}"
11> <input>io:fwrite("~tp~n", [&lt;&lt;128,128&gt;&gt;]).</input>
&lt;&lt;128,128&gt;&gt;
12> <input>io:fwrite("~tp~n", [&lt;&lt;208,128&gt;&gt;]).</input>
&lt;&lt;"\x{400}"/utf8&gt;&gt;
ok</pre>
          </item>
          <tag><c>W</c></tag>
          <item>
            <p>Writes data in the same way as <c>~w</c>, but takes an
              extra argument which is the maximum depth to which terms
              are printed. Anything below this depth is replaced with
              <c>...</c>. For example, using <c>T</c> above:</p>
            <pre>
8> <input>io:fwrite("~W~n", [T,9]).</input>
[{attributes,[[{id,age,1.5},{mode,explicit},{typename,...}],
[{id,cho},{mode,...},{...}]]},{typename,'Person'},
{tag,{'PRIVATE',3}},{mode,implicit}]
ok</pre>
            <p>If the maximum depth has been reached, then it is
              impossible to read in the resultant output. Also, the
              <c>,...</c> form in a tuple denotes that there are more
              elements in the tuple but these are below the print depth.</p>
          </item>
          <tag><c>P</c></tag>
          <item>
            <p>Writes data in the same way as <c>~p</c>, but takes an
              extra argument which is the maximum depth to which terms
              are printed. Anything below this depth is replaced with
              <c>...</c>. For example:</p>
            <pre>
9> <input>io:fwrite("~62P~n", [T,9]).</input>
[{attributes,[[{id,age,1.5},{mode,explicit},{typename,...}],
              [{id,cho},{mode,...},{...}]]},
 {typename,'Person'},
 {tag,{'PRIVATE',3}},
 {mode,implicit}]
ok</pre>
          </item>
          <tag><c>B</c></tag>
          <item>
            <p>Writes an integer in base 2..36, the default base is
              10. A leading dash is printed for negative integers.</p>
            <p>The precision field selects base. For example:</p>
            <pre>
1> <input>io:fwrite("~.16B~n", [31]).</input>
1F
ok
2> <input>io:fwrite("~.2B~n", [-19]).</input>
-10011
ok
3> <input>io:fwrite("~.36B~n", [5*36+35]).</input>
5Z
ok</pre>
          </item>
          <tag><c>X</c></tag>
          <item>
            <p>Like <c>B</c>, but takes an extra argument that is a
              prefix to insert before the number, but after the leading
              dash, if any.</p>
            <p>The prefix can be a possibly deep list of characters or
              an atom.</p>
            <pre>
1> <input>io:fwrite("~X~n", [31,"10#"]).</input>
10#31
ok
2> <input>io:fwrite("~.16X~n", [-31,"0x"]).</input>
-0x1F
ok</pre>
          </item>
          <tag><c>#</c></tag>
          <item>
            <p>Like <c>B</c>, but prints the number with an Erlang style
              <c>#</c>-separated base prefix.</p>
            <pre>
1> <input>io:fwrite("~.10#~n", [31]).</input>
10#31
ok
2> <input>io:fwrite("~.16#~n", [-31]).</input>
-16#1F
ok</pre>
          </item>
          <tag><c>b</c></tag>
          <item>
            <p>Like <c>B</c>, but prints lowercase letters.</p>
          </item>
          <tag><c>x</c></tag>
          <item>
            <p>Like <c>X</c>, but prints lowercase letters.</p>
          </item>
          <tag><c>+</c></tag>
          <item>
            <p>Like <c>#</c>, but prints lowercase letters.</p>
          </item>
          <tag><c>n</c></tag>
          <item>
            <p>Writes a new line.</p>
          </item>
          <tag><c>i</c></tag>
          <item>
            <p>Ignores the next term.</p>
          </item>
        </taglist>
        <p>Returns:</p>
        <taglist>
          <tag><c>ok</c></tag>
          <item>
            <p>The formatting succeeded.</p>
          </item>
        </taglist>
        <p>If an error occurs, there is no output. For example:</p>
        <pre>
1> <input>io:fwrite("~s ~w ~i ~w ~c ~n",['abc def', 'abc def', {foo, 1},{foo, 1}, 65]).</input>
abc def 'abc def'  {foo,1} A
ok
2> <input>io:fwrite("~s", [65]).</input>
** exception exit: {badarg,[{io,format,[&lt;0.22.0>,"~s","A"]},
                            {erl_eval,do_apply,5},
                            {shell,exprs,6},
                            {shell,eval_exprs,6},
                            {shell,eval_loop,3}]}
     in function  io:o_request/2</pre>
        <p>In this example, an attempt was made to output the single
          character 65 with the aid of the string formatting directive
          "~s".</p>
      </desc>
    </func>
    <func>
      <name name="fread" arity="2"/>
      <name name="fread" arity="3"/>
      <fsummary>Read formatted input</fsummary>
      <type name="server_no_data"/>
      <desc>
        <p>Reads characters from the standard input (<c><anno>IoDevice</anno></c>),
          prompting it with <c><anno>Prompt</anno></c>. Interprets the characters in
          accordance with <c><anno>Format</anno></c>. <c><anno>Format</anno></c> contains control
          sequences which directs the interpretation of the input.</p>
        <p><c><anno>Format</anno></c> may contain:</p>
        <list type="bulleted">
          <item>
            <p>White space characters (SPACE, TAB and NEWLINE) which
              cause input to be read to the next non-white space
              character.</p>
          </item>
          <item>
            <p>Ordinary characters which must match the next input
              character.</p>
          </item>
          <item>

            <p>Control sequences, which have the general format
              <c>~*FMC</c>. The character <c>*</c> is an optional
              return suppression character. It provides a method to
              specify a field which is to be omitted. <c>F</c> is the
              <c>field width</c> of the input field, <c>M</c> is an optional
              translation modifier (of which <c>t</c> is the only currently
              supported, meaning Unicode translation) and <c>C</c>
              determines the type of control sequence.</p>

            <p>Unless otherwise specified, leading white-space is
              ignored for all control sequences. An input field cannot
              be more than one line wide. The following control
              sequences are available:</p>
            <taglist>
              <tag><c>~</c></tag>
              <item>
                <p>A single <c>~</c> is expected in the input.</p>
              </item>
              <tag><c>d</c></tag>
              <item>
                <p>A decimal integer is expected.</p>
              </item>
              <tag><c>u</c></tag>
              <item>
                <p>An unsigned integer in base 2..36 is expected. The
                  field width parameter is used to specify base. Leading
                  white-space characters are not skipped.</p>
              </item>
              <tag><c>-</c></tag>
              <item>
                <p>An optional sign character is expected. A sign
                  character <c>-</c> gives the return value <c>-1</c>. Sign
                  character <c>+</c> or none gives <c>1</c>. The field width
                  parameter is ignored. Leading white-space characters
                  are not skipped.</p>
              </item>
              <tag><c>#</c></tag>
              <item>
                <p>An integer in base 2..36 with Erlang-style base
                  prefix (for example <c>"16#ffff"</c>) is expected.</p>
              </item>
              <tag><c>f</c></tag>
              <item>
                <p>A floating point number is expected. It must follow
                  the Erlang floating point number syntax.</p>
              </item>
              <tag><c>s</c></tag>
              <item>
                <p>A string of non-white-space characters is read. If a
                  field width has been specified, this number of
                  characters are read and all trailing white-space
                  characters are stripped. An Erlang string (list of
                  characters) is returned.</p>

		  <p>If Unicode translation is in effect (<c>~ts</c>),
		  characters larger than 255 are accepted, otherwise
		  not. With the translation modifier, the list
		  returned may as a consequence also contain
		  integers larger than 255:</p>

<pre>
1> <input>io:fread("Prompt> ","~s").</input>
Prompt> <input>&lt;Characters beyond latin1 range not printable in this medium&gt;</input>
{error,{fread,string}}
2> <input>io:fread("Prompt> ","~ts").</input>
Prompt> <input>&lt;Characters beyond latin1 range not printable in this medium&gt;</input>
{ok,[[1091,1085,1080,1094,1086,1076,1077]]}</pre>

              </item>
              <tag><c>a</c></tag>
              <item>
                <p>Similar to <c>s</c>, but the resulting string is
                  converted into an atom.</p>
		  <p>The Unicode translation modifier is not allowed (atoms can not contain characters beyond the latin1 range).</p>
              </item>
              <tag><c>c</c></tag>
              <item>
                <p>The number of characters equal to the field width are
                  read (default is 1) and returned as an Erlang string.
                  However, leading and trailing white-space characters
                  are not omitted as they are with <c>s</c>. All
                  characters are returned.</p>
		  <p>The Unicode translation modifier works as with <c>s</c>:</p>
<pre>
1> <input>io:fread("Prompt> ","~c").</input>
Prompt> <input>&lt;Character beyond latin1 range not printable in this medium&gt;</input>
{error,{fread,string}}
2> <input>io:fread("Prompt> ","~tc").</input>
Prompt> <input>&lt;Character beyond latin1 range not printable in this medium&gt;</input>
{ok,[[1091]]}</pre>

              </item>
              <tag><c>l</c></tag>
              <item>
                <p>Returns the number of characters which have been
                  scanned up to that point, including white-space
                  characters.</p>
              </item>
            </taglist>
            <p>It returns:</p>
            <taglist>
              <tag><c>{ok, <anno>Terms</anno>}</c></tag>
              <item>
                <p>The read was successful and <c><anno>Terms</anno></c> is the list
                  of successfully matched and read items.</p>
              </item>
              <tag><c>eof</c></tag>
              <item>
                <p>End of file was encountered.</p>
              </item>
              <tag><c>{error, <anno>FreadError</anno>}</c></tag>
              <item>
                <p>The reading failed and <c>FreadError</c> gives a
                  hint about the error.</p>
              </item>
              <tag><c>{error, <anno>ErrorDescription</anno>}</c></tag>
              <item>
                <p>The read operation failed and the parameter
                  <c><anno>ErrorDescription</anno></c> gives a hint about the error.</p>
              </item>
            </taglist>
          </item>
        </list>
        <p>Examples:</p>
        <pre>
20> <input>io:fread('enter>', "~f~f~f").</input>
enter><input>1.9 35.5e3 15.0</input>
{ok,[1.9,3.55e4,15.0]}
21> <input>io:fread('enter>', "~10f~d").</input>
enter>     <input>5.67899</input>
{ok,[5.678,99]}
22> <input>io:fread('enter>', ":~10s:~10c:").</input>
enter><input>:</input>   <input>alan</input>   <input>:</input>   <input>joe</input>    <input>:</input>
{ok, ["alan", "   joe    "]}</pre>
      </desc>
    </func>
    <func>
      <name name="rows" arity="0"/>
      <name name="rows" arity="1"/>
      <fsummary>Get the number of rows of an IO device</fsummary>
      <desc>
          <p>Retrieves the number of rows of the 
          <c><anno>IoDevice</anno></c> (i.e. the height of a terminal). The function
          only succeeds for terminal devices, for all other IO devices
          the function returns <c>{error, enotsup}</c></p>
      </desc>
    </func>
    <func>
      <name name="scan_erl_exprs" arity="1"/>
      <name name="scan_erl_exprs" arity="2"/>
      <name name="scan_erl_exprs" arity="3"/>
      <name name="scan_erl_exprs" arity="4"/>
      <fsummary>Read and tokenize Erlang expressions</fsummary>
      <type name="server_no_data"/>
      <desc>
        <p>Reads data from the standard input (<c>IoDevice</c>),
          prompting it with <c>Prompt</c>. Reading starts at location
          <c>StartLocation</c> (<c>1</c>). The argument <c><anno>Options</anno></c>
          is passed on as the <c>Options</c> argument of the
          <c>erl_scan:tokens/4</c> function. The data is tokenized as if
          it were a
          sequence of Erlang expressions until a final dot (<c>.</c>) is
          reached. This token is also returned. It returns:</p>
        <taglist>
          <tag><c>{ok, Tokens, EndLocation}</c></tag>
          <item>
            <p>The tokenization succeeded.</p>
          </item>
          <tag><c>{eof, EndLocation}</c></tag>
          <item>
            <p>End of file was encountered by the tokenizer.</p>
          </item>
          <tag><c>eof</c></tag>
          <item>
            <p>End of file was encountered by the I/O-server.</p>
          </item>
          <tag><c>{error, ErrorInfo, ErrorLocation}</c></tag>
          <item>
            <p>An error occurred while tokenizing.</p>
          </item>
	  <tag><c>{error, <anno>ErrorDescription</anno>}</c></tag>
	  <item>
	    <p>Other (rare) error condition, for instance <c>{error, estale}</c>
	    if reading from an NFS file system.</p>
	  </item>
        </taglist>
        <p>Example:</p>
        <pre>
23> <input>io:scan_erl_exprs('enter>').</input>
enter><input>abc(), "hey".</input>
{ok,[{atom,1,abc},{'(',1},{')',1},{',',1},{string,1,"hey"},{dot,1}],2}
24> <input>io:scan_erl_exprs('enter>').</input>
enter><input>1.0er.</input>
{error,{1,erl_scan,{illegal,float}},2}</pre>
      </desc>
    </func>
    <func>
      <name name="scan_erl_form" arity="1"/>
      <name name="scan_erl_form" arity="2"/>
      <name name="scan_erl_form" arity="3"/>
      <name name="scan_erl_form" arity="4"/>
      <fsummary>Read and tokenize an Erlang form</fsummary>
      <type name="server_no_data"/>
      <desc>
        <p>Reads data from the standard input (<c><anno>IoDevice</anno></c>),
          prompting it with <c><anno>Prompt</anno></c>. Starts reading
          at location <c><anno>StartLocation</anno></c> (<c>1</c>). The
          argument <c><anno>Options</anno></c> is passed on as the
          <c>Options</c> argument of the <c>erl_scan:tokens/4</c>
          function. The data is tokenized as if it were an
          Erlang form - one of the valid Erlang expressions in an
          Erlang source file - until a final dot (<c>.</c>) is reached.
          This last token is also returned. The return values are the
          same as for <c>scan_erl_exprs/1,2,3</c> above.</p>
      </desc>
    </func>
    <func>
      <name name="parse_erl_exprs" arity="1"/>
      <name name="parse_erl_exprs" arity="2"/>
      <name name="parse_erl_exprs" arity="3"/>
      <name name="parse_erl_exprs" arity="4"/>
      <fsummary>Read, tokenize and parse Erlang expressions</fsummary>
      <type name="parse_ret"/>
      <type name="server_no_data"/>
      <desc>
        <p>Reads data from the standard input
          (<c><anno>IoDevice</anno></c>), prompting it with
          <c><anno>Prompt</anno></c>. Starts reading at location
          <c><anno>StartLocation</anno></c> (<c>1</c>). The argument
          <c><anno>Options</anno></c> is passed on as the
          <c>Options</c> argument of the <c>erl_scan:tokens/4</c>
          function. The data is tokenized and parsed as if it were a
          sequence of Erlang expressions until a final dot (<c>.</c>) is reached.
          It returns:</p>
        <taglist>
          <tag><c>{ok, ExprList, EndLocation}</c></tag>
          <item>
            <p>The parsing was successful.</p>
          </item>
          <tag><c>{eof, EndLocation}</c></tag>
          <item>
            <p>End of file was encountered by the tokenizer.</p>
          </item>
          <tag><c>eof</c></tag>
          <item>
            <p>End of file was encountered by the I/O-server.</p>
          </item>
          <tag><c>{error, ErrorInfo, ErrorLocation}</c></tag>
          <item>
            <p>An error occurred while tokenizing or parsing.</p>
          </item>
	  <tag><c>{error, <anno>ErrorDescription</anno>}</c></tag>
	  <item>
	    <p>Other (rare) error condition, for instance <c>{error, estale}</c>
	    if reading from an NFS file system.</p>
	  </item>
        </taglist>
        <p>Example:</p>
        <pre>
25> <input>io:parse_erl_exprs('enter>').</input>
enter><input>abc(), "hey".</input>
{ok, [{call,1,{atom,1,abc},[]},{string,1,"hey"}],2}
26> <input>io:parse_erl_exprs ('enter>').</input>
enter><input>abc("hey".</input>
{error,{1,erl_parse,["syntax error before: ",["'.'"]]},2}</pre>
      </desc>
    </func>
    <func>
      <name name="parse_erl_form" arity="1"/>
      <name name="parse_erl_form" arity="2"/>
      <name name="parse_erl_form" arity="3"/>
      <name name="parse_erl_form" arity="4"/>
      <fsummary>Read, tokenize and parse an Erlang form</fsummary>
      <type name="parse_form_ret"/>
      <type name="server_no_data"/>
      <desc>
        <p>Reads data from the standard input (<c><anno>IoDevice</anno></c>),
          prompting it with <c><anno>Prompt</anno></c>. Starts reading at
          location <c><anno>StartLocation</anno></c> (<c>1</c>). The argument
          <c><anno>Options</anno></c> is passed on as the
          <c>Options</c> argument of the <c>erl_scan:tokens/4</c>
          function. The data is tokenized and parsed as if
          it were an Erlang form - one of the valid Erlang expressions
          in an Erlang source file - until a final dot (<c>.</c>) is reached. It
          returns:</p>
        <taglist>
          <tag><c>{ok, AbsForm, EndLocation}</c></tag>
          <item>
            <p>The parsing was successful.</p>
          </item>
          <tag><c>{eof, EndLocation}</c></tag>
          <item>
            <p>End of file was encountered by the tokenizer.</p>
          </item>
          <tag><c>eof</c></tag>
          <item>
            <p>End of file was encountered by the I/O-server.</p>
          </item>
          <tag><c>{error, ErrorInfo, ErrorLocation}</c></tag>
          <item>
            <p>An error occurred while tokenizing or parsing.</p>
          </item>
	  <tag><c>{error, <anno>ErrorDescription</anno>}</c></tag>
	  <item>
	    <p>Other (rare) error condition, for instance <c>{error, estale}</c>
	    if reading from an NFS file system.</p>
	  </item>
        </taglist>
      </desc>
    </func>
  </funcs>

  <section>
    <title>Standard Input/Output</title>
    <p>All Erlang processes have a default standard IO device. This
      device is used when no <c>IoDevice</c> argument is specified in
      the above function calls. However, it is sometimes desirable to
      use an explicit <c>IoDevice</c> argument which refers to the
      default IO device. This is the case with functions that can
      access either a file or the default IO device. The atom
      <c>standard_io</c> has this special meaning. The following example
      illustrates this:</p>
    <pre>
27> <input>io:read('enter>').</input>
enter><input>foo.</input>
{ok,foo}
28> <input>io:read(standard_io, 'enter>').</input>
enter><input>bar.</input>
{ok,bar}</pre>
    <p>There is always a process registered under the name of
      <c>user</c>. This can be used for sending output to the user.</p>
  </section>
 <section>
    <title>Standard Error</title>
    <p>In certain situations, especially when the standard output is redirected, access to an I/O-server specific for error messages might be convenient. The IO device <c>standard_error</c> can be used to direct output to whatever the current operating system considers a suitable IO device for error output. Example on a Unix-like operating system:</p>
<pre>
$ <input>erl -noshell -noinput -eval 'io:format(standard_error,"Error: ~s~n",["error 11"]),'\</input>
<input>'init:stop().' > /dev/null</input>
Error: error 11</pre>



  </section>

  <section>
    <title>Error Information</title>
    <p>The <c>ErrorInfo</c> mentioned above is the standard
      <c>ErrorInfo</c> structure which is returned from all IO modules.
      It has the format:</p>
    <code type="none">
{ErrorLocation, Module, ErrorDescriptor}</code>
    <p>A string which describes the error is obtained with the following
      call:</p>
    <code type="none">
Module:format_error(ErrorDescriptor)</code>
  </section>
</erlref>