xref: /titanic_50/usr/src/cmd/fs.d/df.xcl (revision bd93c05dbd9b8f1e8d2edf48c777bc881f927608)
1*7c478bd9Sstevel@tonic-gate#
2*7c478bd9Sstevel@tonic-gate# CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate#
4*7c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate# Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate# (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate# with the License.
8*7c478bd9Sstevel@tonic-gate#
9*7c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate# and limitations under the License.
13*7c478bd9Sstevel@tonic-gate#
14*7c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate#
20*7c478bd9Sstevel@tonic-gate# CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate#
22*7c478bd9Sstevel@tonic-gatemsgid  "-"
23*7c478bd9Sstevel@tonic-gatemsgid  ""
24*7c478bd9Sstevel@tonic-gatemsgid  "devnm"
25*7c478bd9Sstevel@tonic-gatemsgid  "%s: "
26*7c478bd9Sstevel@tonic-gatemsgid  " "
27*7c478bd9Sstevel@tonic-gatemsgid  "%s\n"
28*7c478bd9Sstevel@tonic-gatemsgid  "r"
29*7c478bd9Sstevel@tonic-gatemsgid  "/etc/dfs/fstypes"
30*7c478bd9Sstevel@tonic-gatemsgid  "%s"
31*7c478bd9Sstevel@tonic-gatemsgid  "/etc/mnttab"
32*7c478bd9Sstevel@tonic-gatemsgid  "ignore"
33*7c478bd9Sstevel@tonic-gatemsgid  "F:o:abekVtgnlP"
34*7c478bd9Sstevel@tonic-gatemsgid  "swap"
35*7c478bd9Sstevel@tonic-gatemsgid  "dev"
36*7c478bd9Sstevel@tonic-gatemsgid  "lofs"
37*7c478bd9Sstevel@tonic-gatemsgid  "%s%s/df"
38*7c478bd9Sstevel@tonic-gatemsgid  "/usr/lib/fs/"
39*7c478bd9Sstevel@tonic-gatemsgid  "-o"
40*7c478bd9Sstevel@tonic-gatemsgid  "%s "
41*7c478bd9Sstevel@tonic-gatemsgid  "-l"
42*7c478bd9Sstevel@tonic-gatemsgid  "-n"
43*7c478bd9Sstevel@tonic-gatemsgid  "-1"
44*7c478bd9Sstevel@tonic-gatemsgid  "%llu"
45*7c478bd9Sstevel@tonic-gatemsgid  "%-*s(%-*s):"
46*7c478bd9Sstevel@tonic-gatemsgid  "%-*s %*lu %-*s %*lu %-*s\n"
47*7c478bd9Sstevel@tonic-gatemsgid  "%*s %-*s %*s %-*s %*s %-*s %*s %-*s\n"
48*7c478bd9Sstevel@tonic-gatemsgid  "%*s %-*s %*lu %-*s %s\n"
49*7c478bd9Sstevel@tonic-gatemsgid  "%*s %-*s %#*.*lx %-*s %*s %-*s\n\n"
50*7c478bd9Sstevel@tonic-gatemsgid  "  100%"
51*7c478bd9Sstevel@tonic-gatemsgid  "%5.0f%%"
52*7c478bd9Sstevel@tonic-gatemsgid  "%-*.*s %-*.*s %*lld %*lld %*lld %-.*s\n"
53*7c478bd9Sstevel@tonic-gatemsgid  "%-*s %*s %*s %*s %-*s %-s\n"
54*7c478bd9Sstevel@tonic-gatemsgid  "%-*s(%-*s)"
55*7c478bd9Sstevel@tonic-gatemsgid  "%s: %*s %s %*s %s\n"
56*7c478bd9Sstevel@tonic-gatemsgid  "%*s: %*s %s %*s %s\n"
57*7c478bd9Sstevel@tonic-gatemsgid  "%-*s(%-*s): %*s %s\n"
58*7c478bd9Sstevel@tonic-gatemsgid  "%-*s: %-*s\n"
59*7c478bd9Sstevel@tonic-gatemsgid  "%-*s(%-*s):%*s %s %*s %s\n"
60*7c478bd9Sstevel@tonic-gatemsgid  "%s -F %s %s%s\n"
61*7c478bd9Sstevel@tonic-gatemsgid  "/etc/vfstab"
62*7c478bd9Sstevel@tonic-gatemsgid  "tmpfs"
63*7c478bd9Sstevel@tonic-gatemsgid  "%s %s\n"
64*7c478bd9Sstevel@tonic-gatemsgid  "ro"
65*7c478bd9Sstevel@tonic-gatemsgid  "rw"
66*7c478bd9Sstevel@tonic-gatemsgid  "--"
67*7c478bd9Sstevel@tonic-gatemsgid  "-?"
68*7c478bd9Sstevel@tonic-gatemsgid  "suid"
69*7c478bd9Sstevel@tonic-gatemsgid  "nosuid"
70*7c478bd9Sstevel@tonic-gatemsgid  " -p"
71*7c478bd9Sstevel@tonic-gatemsgid  " -v"
72*7c478bd9Sstevel@tonic-gatemsgid  "\n"
73*7c478bd9Sstevel@tonic-gatemsgid  "-c"
74*7c478bd9Sstevel@tonic-gatemsgid  "-m"
75*7c478bd9Sstevel@tonic-gatemsgid  "-O"
76*7c478bd9Sstevel@tonic-gatemsgid  "-r"
77*7c478bd9Sstevel@tonic-gatemsgid  "/"
78*7c478bd9Sstevel@tonic-gatemsgid  " \t\n"
79*7c478bd9Sstevel@tonic-gatemsgid  "/usr/lib/fs
80*7c478bd9Sstevel@tonic-gatemsgid  "/etc/fs"
81*7c478bd9Sstevel@tonic-gatemsgid  "%s/%s/%s"
82*7c478bd9Sstevel@tonic-gatemsgid  "%s -F %s"
83*7c478bd9Sstevel@tonic-gatemsgid  "F:o:mb:?V"
84*7c478bd9Sstevel@tonic-gatemsgid  "%s -F %s "
85*7c478bd9Sstevel@tonic-gatemsgid  " %s"
86*7c478bd9Sstevel@tonic-gatemsgid  "/sbin/sh"
87*7c478bd9Sstevel@tonic-gatemsgid  "yes"
88*7c478bd9Sstevel@tonic-gatemsgid  "fork"
89*7c478bd9Sstevel@tonic-gatemsgid  "exec"
90*7c478bd9Sstevel@tonic-gatemsgid  "r+b"
91*7c478bd9Sstevel@tonic-gatemsgid  "/usr/lib/fs"
92*7c478bd9Sstevel@tonic-gatemsgid  "/etc/fs"
93*7c478bd9Sstevel@tonic-gatemsgid  "/usr"
94*7c478bd9Sstevel@tonic-gatemsgid  "/usr/kvm"
95*7c478bd9Sstevel@tonic-gatemsgid  "/var"
96*7c478bd9Sstevel@tonic-gatemsgid  "/proc"
97*7c478bd9Sstevel@tonic-gatemsgid  "/dev/fd"
98*7c478bd9Sstevel@tonic-gatemsgid  "/tmp"
99*7c478bd9Sstevel@tonic-gatemsgid  "ado:V?"
100*7c478bd9Sstevel@tonic-gatemsgid  "<null>"
101*7c478bd9Sstevel@tonic-gatemsgid  "-N"
102*7c478bd9Sstevel@tonic-gatemsgid  "-y"
103*7c478bd9Sstevel@tonic-gatemsgid  "-Y"
104*7c478bd9Sstevel@tonic-gatemsgid  "--"
105*7c478bd9Sstevel@tonic-gatemsgid  "ufs"
106*7c478bd9Sstevel@tonic-gatemsgid  "wait"
107*7c478bd9Sstevel@tonic-gatemsgid  "\n   "
108*7c478bd9Sstevel@tonic-gatemsgid  ","
109*7c478bd9Sstevel@tonic-gatemsgid  "%s (%s)%s"
110*7c478bd9Sstevel@tonic-gatemsgid  "/usr/lib/fs"
111*7c478bd9Sstevel@tonic-gatemsgid  "/etc/fs"
112*7c478bd9Sstevel@tonic-gatemsgid  " %s"
113*7c478bd9Sstevel@tonic-gatemsgid  "/etc/vfstab"
114*7c478bd9Sstevel@tonic-gatemsgid  "volcopy -F %s"
115*7c478bd9Sstevel@tonic-gatemsgid  "/usr/lib/fs"
116*7c478bd9Sstevel@tonic-gatemsgid  "%s/%s/volcopy"
117*7c478bd9Sstevel@tonic-gatemsgid  "/usr/lib/fs"
118*7c478bd9Sstevel@tonic-gatemsgid  "ff"
119*7c478bd9Sstevel@tonic-gatemsgid  "F:o:p:a:m:c:n:i:?IlsuV"
120*7c478bd9Sstevel@tonic-gatemsgid  "ncheck"
121*7c478bd9Sstevel@tonic-gatemsgid  "F:o:?i:asV"
122*7c478bd9Sstevel@tonic-gatemsgid  "F:o:?V"
123*7c478bd9Sstevel@tonic-gatemsgid  "Usage:\n"
124*7c478bd9Sstevel@tonic-gatemsgid  "-?"
125*7c478bd9Sstevel@tonic-gatemsgid  "-%c"
126*7c478bd9Sstevel@tonic-gatemsgid  "sh"
127*7c478bd9Sstevel@tonic-gatemsgid  "clri"
128*7c478bd9Sstevel@tonic-gatemsgid  "F:o:?V"
129*7c478bd9Sstevel@tonic-gatemsgid  "[-F FSType] [-V] special inumber ..."
130*7c478bd9Sstevel@tonic-gatemsgid  "[-F FSType] [-V] [-m] [-o specific_options] special [operands]"
131*7c478bd9Sstevel@tonic-gatemsgid  "[-F FSType] [-V] [-o specific_options] inputfs outputfs"
132*7c478bd9Sstevel@tonic-gatemsgid  "[-F FSType] [-V] [-o specific_options] special"
133*7c478bd9Sstevel@tonic-gatemsgid  "[-F FSType] [-V] [-o specific_options] special [operands]"
134*7c478bd9Sstevel@tonic-gatemsgid  "mkfs"
135*7c478bd9Sstevel@tonic-gatemsgid  "dcopy"
136*7c478bd9Sstevel@tonic-gatemsgid  "F:o:s:a:f:?dvV"
137*7c478bd9Sstevel@tonic-gatemsgid  "fsdb"
138*7c478bd9Sstevel@tonic-gatemsgid  "F:o:z:?V"
139*7c478bd9Sstevel@tonic-gatemsgid  "labelit"
140*7c478bd9Sstevel@tonic-gatemsgid  "F:o:?nV"
141*7c478bd9Sstevel@tonic-gatemsgid  "-%c"
142*7c478bd9Sstevel@tonic-gatemsgid  "%s: %s\n"
143*7c478bd9Sstevel@tonic-gatemsgid  "%s:%s: "
144*7c478bd9Sstevel@tonic-gatemsgid  "%8ld"
145*7c478bd9Sstevel@tonic-gatemsgid  "%8lld\n"
146*7c478bd9Sstevel@tonic-gatemsgid  "%8lld%8lld%8lld"
147*7c478bd9Sstevel@tonic-gatemsgid  "%s"
148*7c478bd9Sstevel@tonic-gatemsgid  "%8lld"
149*7c478bd9Sstevel@tonic-gatemsgid  "%8s"
150*7c478bd9Sstevel@tonic-gatemsgid  "*"
151*7c478bd9Sstevel@tonic-gatemsgid  "%6s  "
152*7c478bd9Sstevel@tonic-gatemsgid  "%8lld%8lld%8d\n"
153*7c478bd9Sstevel@tonic-gatemsgid  "mkfs -F ufs "
154*7c478bd9Sstevel@tonic-gatemsgid  "mkfs -F ufs -o "
155*7c478bd9Sstevel@tonic-gatemsgid  "%s: %m"
156*7c478bd9Sstevel@tonic-gatemsgid  "\n"
157*7c478bd9Sstevel@tonic-gate
158