1UREAD(1) General Commands Manual UREAD(1)
2
3
4
6 uread - reads a Fortran unformatted file
7
9 uread [ -x ] [ filename ]
10
12 uread reads an file created with Fortran's unformatted IO. The size of
13 each record in bytes is printed to the screen, along with guesses as to
14 what sort of data may be contained within the record.
15
16 *2 integer*2, logical*2 data
17
18 *4 integer, logical, real data
19
20 *8 integer*8, real*8, double precision, complex data
21
22 *16 real*16, extended precision, double complex data
23
24 In addition, data marked with char contains only writable ASCII characā
25 ters and white space, and so is likely to be character data.
26
27 The -x option instructs uread to byte swap the input record data,
28 allowing big endian data to be examined on a little endian machine, and
29 vis versa.
30
31 The file name may be specified on the command line, otherwise the data
32 will be read in from the standard input.
33
35 The error message
36 uread: data larger than file length
37 often indicates that the file being read has the opposite byte "sex" to
38 the platform uread is being run on. Try using the -x flag to see if
39 this is the case.
40
42 ustrip(1), uswap(1)
43
45 S.E. Norris s.norris@auckland.ac.nz
46
47
48
49 UREAD(1)