~cfuhrman/+junk/netbsd-othersrc-trunk

« back to all changes in this revision

Viewing changes to bin/fsu_cat/fsu_cat.1

  • Committer: stacktic
  • Date: 2009-03-23 21:04:00 UTC
  • Revision ID: svn-v4:288d5a72-fed7-e111-8680-000c29dcf8fe:trunk:1946
ImportedĀ fs-utilsĀ binaries

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.\"     $NetBSD$
 
2
.\" from
 
3
.\"     NetBSD: cat.1,v 1.32 2006/09/23 11:24:44 wiz Exp
 
4
.\"
 
5
.\" Copyright (c) 1989, 1990, 1993
 
6
.\"     The Regents of the University of California.  All rights reserved.
 
7
.\"
 
8
.\" This code is derived from software contributed to Berkeley by
 
9
.\" the Institute of Electrical and Electronics Engineers, Inc.
 
10
.\"
 
11
.\" Redistribution and use in source and binary forms, with or without
 
12
.\" modification, are permitted provided that the following conditions
 
13
.\" are met:
 
14
.\" 1. Redistributions of source code must retain the above copyright
 
15
.\"    notice, this list of conditions and the following disclaimer.
 
16
.\" 2. Redistributions in binary form must reproduce the above copyright
 
17
.\"    notice, this list of conditions and the following disclaimer in the
 
18
.\"    documentation and/or other materials provided with the distribution.
 
19
.\" 3. Neither the name of the University nor the names of its contributors
 
20
.\"    may be used to endorse or promote products derived from this software
 
21
.\"    without specific prior written permission.
 
22
.\"
 
23
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 
24
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
25
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
26
.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 
27
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
28
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
29
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
30
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
31
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
32
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
33
.\" SUCH DAMAGE.
 
34
.\"
 
35
.\"     @(#)cat.1       8.3 (Berkeley) 5/2/95
 
36
.\"
 
37
.Dd June 19, 2008
 
38
.Dt FSU_CAT 1
 
39
.Os
 
40
.Sh NAME
 
41
.Nm fsu_cat
 
42
.Nd concatenate and print files from a file system image through rump
 
43
.Sh SYNOPSIS
 
44
.Nm
 
45
.Op Fl benstv
 
46
.Ar fstype fsdevice
 
47
.Op -
 
48
.Op Ar
 
49
.Sh DESCRIPTION
 
50
The
 
51
.Nm
 
52
utility reads files sequentially, writing them to the standard output. The
 
53
.Ar file
 
54
operands are absolute path in the 
 
55
.Ar fstype
 
56
file system image contained in
 
57
.Ar fsdevice
 
58
and are processed in command line order.
 
59
.Pp
 
60
The word
 
61
.Dq concatenate
 
62
is just a verbose synonym for
 
63
.Dq catenate .
 
64
.Pp
 
65
The options are as follows:
 
66
.Bl -tag -width Ds
 
67
.It Fl b
 
68
Implies the
 
69
.Fl n
 
70
option but doesn't number blank lines.
 
71
.It Fl e
 
72
Implies the
 
73
.Fl v
 
74
option, and displays a dollar sign
 
75
.Pq Ql \&$
 
76
at the end of each line
 
77
as well.
 
78
.It Fl n
 
79
Number the output lines, starting at 1.
 
80
.It Fl s
 
81
Squeeze multiple adjacent empty lines, causing the output to be
 
82
single spaced.
 
83
.It Fl t
 
84
Implies the
 
85
.Fl v
 
86
option, and displays tab characters as
 
87
.Ql ^I
 
88
as well.
 
89
.It Fl v
 
90
Displays non-printing characters so they are visible.
 
91
Control characters print as
 
92
.Ql ^X
 
93
for control-X; the delete
 
94
character (octal 0177) prints as
 
95
.Ql ^? .
 
96
Non-ascii characters (with the high bit set) are printed as
 
97
.Ql M-
 
98
(for meta) followed by the character for the low 7 bits.
 
99
.El
 
100
.Sh EXAMPLES
 
101
The command:
 
102
.Bd -literal -offset indent
 
103
.Ic fsu_cat cd9660 cd9660_image.iso file1
 
104
.Ed
 
105
.Pp
 
106
will print the contents of
 
107
.Ar file1
 
108
to the standard output.
 
109
.Pp
 
110
The command:
 
111
.Bd -literal -offset indent
 
112
.Ic fsu_cat ufs ufs_image.iso file1 file2 \*[Gt] file3
 
113
.Ed
 
114
.Pp
 
115
will sequentially print the contents of
 
116
.Ar file1
 
117
and
 
118
.Ar file2
 
119
to the file
 
120
.Ar file3 ,
 
121
truncating
 
122
.Ar file3
 
123
if it already exists.
 
124
See the manual page for your shell (i.e.,
 
125
.Xr sh 1 )
 
126
for more information on redirection.