1994-05-17 08:06:00 +04:00
|
|
|
/*
|
1994-09-17 00:59:27 +04:00
|
|
|
* Copyright (c) 1980, 1990, 1993, 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1994-05-17 08:06:00 +04:00
|
|
|
* (c) UNIX System Laboratories, Inc.
|
|
|
|
* All or some portions of this file are derived from material licensed
|
|
|
|
* to the University of California by American Telephone and Telegraph
|
|
|
|
* Co. or Unix System Laboratories, Inc. and are reproduced herein with
|
|
|
|
* the permission of UNIX System Laboratories, Inc.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1994-09-17 00:59:27 +04:00
|
|
|
static char copyright[] =
|
|
|
|
"@(#) Copyright (c) 1980, 1990, 1993, 1994\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
1994-05-17 08:06:00 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
1994-09-17 00:59:27 +04:00
|
|
|
/*static char sccsid[] = "from: @(#)df.c 8.7 (Berkeley) 4/2/94";*/
|
1995-01-14 02:23:41 +03:00
|
|
|
static char rcsid[] = "$Id: df.c,v 1.16 1995/01/13 23:23:43 mycroft Exp $";
|
1994-05-17 08:06:00 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/mount.h>
|
1994-09-17 00:59:27 +04:00
|
|
|
|
1994-05-17 08:06:00 +04:00
|
|
|
#include <err.h>
|
1994-09-17 00:59:27 +04:00
|
|
|
#include <errno.h>
|
1994-05-17 08:06:00 +04:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
1994-09-17 00:59:27 +04:00
|
|
|
int bread __P((off_t, void *, int));
|
1994-05-17 08:06:00 +04:00
|
|
|
char *getmntpt __P((char *));
|
1994-09-17 00:59:27 +04:00
|
|
|
void prtstat __P((struct statfs *, int));
|
|
|
|
void ufs_df __P((char *, int));
|
1995-01-14 02:23:41 +03:00
|
|
|
void add_fsmask __P((char *));
|
1994-05-17 08:06:00 +04:00
|
|
|
void usage __P((void));
|
|
|
|
|
1995-01-14 02:23:41 +03:00
|
|
|
struct fstype {
|
|
|
|
char *fs_name;
|
|
|
|
int fs_no;
|
|
|
|
};
|
|
|
|
|
|
|
|
int iflag, kflag, nflag, tflag;
|
1994-05-17 08:06:00 +04:00
|
|
|
long blocksize, mntsize;
|
|
|
|
struct statfs *mntbuf;
|
|
|
|
struct ufs_args mdev;
|
1995-01-14 02:23:41 +03:00
|
|
|
struct fstype *fstypes;
|
|
|
|
int numfstypes, defmatch = 1;
|
|
|
|
int posflags, negflags;
|
1994-05-17 08:06:00 +04:00
|
|
|
|
|
|
|
int
|
|
|
|
main(argc, argv)
|
|
|
|
int argc;
|
|
|
|
char *argv[];
|
|
|
|
{
|
|
|
|
struct stat stbuf;
|
|
|
|
struct statfs statfsbuf;
|
|
|
|
long width, maxwidth;
|
|
|
|
int ch, i;
|
|
|
|
char *mntpt;
|
|
|
|
|
1995-01-14 02:23:41 +03:00
|
|
|
while ((ch = getopt(argc, argv, "iklnt:")) != -1)
|
1994-09-17 00:59:27 +04:00
|
|
|
switch (ch) {
|
1994-05-17 08:06:00 +04:00
|
|
|
case 'i':
|
|
|
|
iflag = 1;
|
|
|
|
break;
|
|
|
|
case 'k':
|
|
|
|
blocksize = 1024;
|
|
|
|
kflag = 1;
|
|
|
|
break;
|
|
|
|
case 'l':
|
1995-01-14 02:23:41 +03:00
|
|
|
add_fsmask("local");
|
|
|
|
tflag = 1;
|
1994-05-17 08:06:00 +04:00
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
nflag = 1;
|
|
|
|
break;
|
1995-01-14 02:23:41 +03:00
|
|
|
case 't':
|
|
|
|
add_fsmask(optarg);
|
|
|
|
tflag = 1;
|
|
|
|
break;
|
1994-05-17 08:06:00 +04:00
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
1995-01-14 02:23:41 +03:00
|
|
|
if (*argv && tflag)
|
|
|
|
errx(1, "-l or -t does not make sense with list of mount points");
|
1994-05-17 08:06:00 +04:00
|
|
|
|
|
|
|
mntsize = getmntinfo(&mntbuf, (nflag ? MNT_NOWAIT : MNT_WAIT));
|
|
|
|
if (mntsize == 0)
|
1994-07-12 11:58:27 +04:00
|
|
|
err(1, "retrieving information on mounted file systems");
|
1994-05-17 08:06:00 +04:00
|
|
|
maxwidth = 0;
|
|
|
|
for (i = 0; i < mntsize; i++) {
|
|
|
|
width = strlen(mntbuf[i].f_mntfromname);
|
|
|
|
if (width > maxwidth)
|
|
|
|
maxwidth = width;
|
|
|
|
}
|
1994-09-17 00:59:27 +04:00
|
|
|
|
1994-05-17 08:06:00 +04:00
|
|
|
if (!*argv) {
|
|
|
|
for (i = 0; i < mntsize; i++)
|
1995-01-14 02:23:41 +03:00
|
|
|
prtstat(&mntbuf[i], maxwidth);
|
1994-05-17 08:06:00 +04:00
|
|
|
exit(0);
|
|
|
|
}
|
1994-09-17 00:59:27 +04:00
|
|
|
|
1994-05-17 08:06:00 +04:00
|
|
|
for (; *argv; argv++) {
|
|
|
|
if (stat(*argv, &stbuf) < 0) {
|
|
|
|
if ((mntpt = getmntpt(*argv)) == 0) {
|
|
|
|
warn("%s", *argv);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else if ((stbuf.st_mode & S_IFMT) == S_IFCHR) {
|
|
|
|
ufs_df(*argv, maxwidth);
|
|
|
|
continue;
|
|
|
|
} else if ((stbuf.st_mode & S_IFMT) == S_IFBLK) {
|
|
|
|
if ((mntpt = getmntpt(*argv)) == 0) {
|
|
|
|
mntpt = mktemp(strdup("/tmp/df.XXXXXX"));
|
|
|
|
mdev.fspec = *argv;
|
|
|
|
if (mkdir(mntpt, DEFFILEMODE) != 0) {
|
|
|
|
warn("%s", mntpt);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (mount(MOUNT_UFS, mntpt, MNT_RDONLY,
|
|
|
|
&mdev) != 0) {
|
|
|
|
ufs_df(*argv, maxwidth);
|
|
|
|
(void)rmdir(mntpt);
|
|
|
|
continue;
|
|
|
|
} else if (statfs(mntpt, &statfsbuf)) {
|
|
|
|
statfsbuf.f_mntonname[0] = '\0';
|
|
|
|
prtstat(&statfsbuf, maxwidth);
|
|
|
|
} else
|
|
|
|
warn("%s", *argv);
|
1994-06-13 10:39:17 +04:00
|
|
|
(void)unmount(mntpt, 0);
|
1994-05-17 08:06:00 +04:00
|
|
|
(void)rmdir(mntpt);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
mntpt = *argv;
|
|
|
|
/*
|
|
|
|
* Statfs does not take a `wait' flag, so we cannot
|
|
|
|
* implement nflag here.
|
|
|
|
*/
|
|
|
|
if (statfs(mntpt, &statfsbuf) < 0) {
|
|
|
|
warn("%s", mntpt);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (argc == 1)
|
|
|
|
maxwidth = strlen(statfsbuf.f_mntfromname) + 1;
|
|
|
|
prtstat(&statfsbuf, maxwidth);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
getmntpt(name)
|
|
|
|
char *name;
|
|
|
|
{
|
|
|
|
long i;
|
|
|
|
|
|
|
|
for (i = 0; i < mntsize; i++) {
|
|
|
|
if (!strcmp(mntbuf[i].f_mntfromname, name))
|
|
|
|
return (mntbuf[i].f_mntonname);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1995-01-14 02:23:41 +03:00
|
|
|
struct fsflags {
|
|
|
|
char *ff_name;
|
|
|
|
int ff_pos;
|
|
|
|
int ff_neg;
|
|
|
|
} fsflags[] = {
|
|
|
|
{"local", MNT_LOCAL, 0},
|
|
|
|
{"ro", MNT_RDONLY, 0},
|
|
|
|
{"rw", 0, MNT_RDONLY},
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
add_fsmask(fstype)
|
|
|
|
char *fstype;
|
|
|
|
{
|
|
|
|
int len, no, n;
|
|
|
|
|
|
|
|
len = strlen(fstype);
|
|
|
|
|
|
|
|
if (!bcmp(fstype, "no", 2)) {
|
|
|
|
no = 1;
|
|
|
|
defmatch = 1;
|
|
|
|
len -= 2;
|
|
|
|
fstype += 2;
|
|
|
|
} else {
|
|
|
|
no = 0;
|
|
|
|
defmatch = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (n = 0; n < sizeof(fsflags) / sizeof(fsflags[0]); n++) {
|
|
|
|
if (!bcmp(fstype, fsflags[n].ff_name, len+1)) {
|
|
|
|
if (!no) {
|
|
|
|
posflags |= fsflags[n].ff_pos;
|
|
|
|
posflags &= ~fsflags[n].ff_neg;
|
|
|
|
negflags |= fsflags[n].ff_neg;
|
|
|
|
negflags &= !fsflags[n].ff_pos;
|
|
|
|
} else {
|
|
|
|
posflags |= fsflags[n].ff_neg;
|
|
|
|
posflags &= ~fsflags[n].ff_pos;
|
|
|
|
negflags |= fsflags[n].ff_pos;
|
|
|
|
negflags &= ~fsflags[n].ff_neg;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!bcmp(fstype, "all", len+1)) {
|
|
|
|
if (no) {
|
|
|
|
(void)fprintf(stderr, "I'm sorry. I can't do that, Dave.\n");
|
|
|
|
exit(1);
|
|
|
|
} else {
|
|
|
|
fstypes = NULL;
|
|
|
|
posflags = negflags = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (n = 0; n < numfstypes; n++) {
|
|
|
|
if (!bcmp(fstype, fstypes[n].fs_name, len+1)) {
|
|
|
|
fstypes[n].fs_no = no;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
numfstypes++;
|
|
|
|
fstypes = (struct fstype *) realloc(fstypes, sizeof(struct fstype) * numfstypes);
|
|
|
|
fstypes[numfstypes - 1].fs_name = strdup(fstype);
|
|
|
|
fstypes[numfstypes - 1].fs_no = no;
|
|
|
|
}
|
|
|
|
|
1994-09-17 00:59:27 +04:00
|
|
|
/*
|
|
|
|
* Convert statfs returned filesystem size into BLOCKSIZE units.
|
|
|
|
* Attempts to avoid overflow for large filesystems.
|
|
|
|
*/
|
|
|
|
#define fsbtoblk(num, fsbs, bs) \
|
|
|
|
(((fsbs) != 0 && (fsbs) < (bs)) ? \
|
|
|
|
(num) / ((bs) / (fsbs)) : (num) * ((fsbs) / (bs)))
|
|
|
|
|
1994-05-17 08:06:00 +04:00
|
|
|
/*
|
|
|
|
* Print out status about a filesystem.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
prtstat(sfsp, maxwidth)
|
1994-09-17 00:59:27 +04:00
|
|
|
struct statfs *sfsp;
|
|
|
|
int maxwidth;
|
1994-05-17 08:06:00 +04:00
|
|
|
{
|
|
|
|
static int headerlen, timesthrough;
|
|
|
|
static char *header;
|
|
|
|
long used, availblks, inodes;
|
1995-01-14 02:23:41 +03:00
|
|
|
int i, gotmatch = defmatch;
|
1994-05-17 08:06:00 +04:00
|
|
|
|
1995-01-14 02:23:41 +03:00
|
|
|
if ((sfsp->f_flags & posflags) != posflags)
|
|
|
|
return;
|
|
|
|
if ((sfsp->f_flags & negflags) != 0)
|
|
|
|
return;
|
|
|
|
if (numfstypes) {
|
|
|
|
for (i = 0; i < numfstypes; i++)
|
|
|
|
if (!strcmp(sfsp->f_fstypename, fstypes[i].fs_name)) {
|
|
|
|
if (fstypes[i].fs_no)
|
|
|
|
return;
|
|
|
|
gotmatch = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!gotmatch)
|
|
|
|
return;
|
|
|
|
}
|
1994-05-17 08:06:00 +04:00
|
|
|
if (maxwidth < 11)
|
|
|
|
maxwidth = 11;
|
|
|
|
if (++timesthrough == 1) {
|
|
|
|
if (kflag) {
|
|
|
|
header = "1K-blocks";
|
|
|
|
headerlen = strlen(header);
|
|
|
|
} else
|
|
|
|
header = getbsize(&headerlen, &blocksize);
|
1994-09-17 00:59:27 +04:00
|
|
|
(void)printf("%-*.*s %s Used Avail Capacity",
|
1994-05-17 08:06:00 +04:00
|
|
|
maxwidth, maxwidth, "Filesystem", header);
|
|
|
|
if (iflag)
|
|
|
|
(void)printf(" iused ifree %%iused");
|
|
|
|
(void)printf(" Mounted on\n");
|
|
|
|
}
|
|
|
|
(void)printf("%-*.*s", maxwidth, maxwidth, sfsp->f_mntfromname);
|
|
|
|
used = sfsp->f_blocks - sfsp->f_bfree;
|
|
|
|
availblks = sfsp->f_bavail + used;
|
1994-09-17 00:59:27 +04:00
|
|
|
(void)printf(" %*ld %8ld %8ld", headerlen,
|
|
|
|
fsbtoblk(sfsp->f_blocks, sfsp->f_bsize, blocksize),
|
|
|
|
fsbtoblk(used, sfsp->f_bsize, blocksize),
|
|
|
|
fsbtoblk(sfsp->f_bavail, sfsp->f_bsize, blocksize));
|
1994-05-17 08:06:00 +04:00
|
|
|
(void)printf(" %5.0f%%",
|
|
|
|
availblks == 0 ? 100.0 : (double)used / (double)availblks * 100.0);
|
|
|
|
if (iflag) {
|
|
|
|
inodes = sfsp->f_files;
|
|
|
|
used = inodes - sfsp->f_ffree;
|
|
|
|
(void)printf(" %7ld %7ld %5.0f%% ", used, sfsp->f_ffree,
|
|
|
|
inodes == 0 ? 100.0 : (double)used / (double)inodes * 100.0);
|
|
|
|
} else
|
|
|
|
(void)printf(" ");
|
|
|
|
(void)printf(" %s\n", sfsp->f_mntonname);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1994-09-17 00:59:27 +04:00
|
|
|
* This code constitutes the pre-system call Berkeley df code for extracting
|
1994-05-17 08:06:00 +04:00
|
|
|
* information from filesystem superblocks.
|
|
|
|
*/
|
1994-06-13 10:39:17 +04:00
|
|
|
#include <ufs/ffs/fs.h>
|
1994-05-17 08:06:00 +04:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fstab.h>
|
|
|
|
|
|
|
|
union {
|
|
|
|
struct fs iu_fs;
|
|
|
|
char dummy[SBSIZE];
|
|
|
|
} sb;
|
|
|
|
#define sblock sb.iu_fs
|
|
|
|
|
1994-09-17 00:59:27 +04:00
|
|
|
int rfd;
|
1994-05-17 08:06:00 +04:00
|
|
|
|
|
|
|
void
|
|
|
|
ufs_df(file, maxwidth)
|
|
|
|
char *file;
|
1994-09-17 00:59:27 +04:00
|
|
|
int maxwidth;
|
1994-05-17 08:06:00 +04:00
|
|
|
{
|
|
|
|
struct statfs statfsbuf;
|
1994-09-17 00:59:27 +04:00
|
|
|
struct statfs *sfsp;
|
1994-05-17 08:06:00 +04:00
|
|
|
char *mntpt;
|
|
|
|
static int synced;
|
|
|
|
|
|
|
|
if (synced++ == 0)
|
|
|
|
sync();
|
|
|
|
|
1994-09-17 00:59:27 +04:00
|
|
|
if ((rfd = open(file, O_RDONLY)) < 0) {
|
1994-05-17 08:06:00 +04:00
|
|
|
warn("%s", file);
|
|
|
|
return;
|
|
|
|
}
|
1994-09-17 00:59:27 +04:00
|
|
|
if (bread((off_t)SBOFF, &sblock, SBSIZE) == 0) {
|
|
|
|
(void)close(rfd);
|
1994-05-17 08:06:00 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
sfsp = &statfsbuf;
|
|
|
|
sfsp->f_type = 0;
|
|
|
|
sfsp->f_flags = 0;
|
1994-09-17 00:59:27 +04:00
|
|
|
sfsp->f_bsize = sblock.fs_fsize;
|
1994-05-17 08:06:00 +04:00
|
|
|
sfsp->f_iosize = sblock.fs_bsize;
|
|
|
|
sfsp->f_blocks = sblock.fs_dsize;
|
|
|
|
sfsp->f_bfree = sblock.fs_cstotal.cs_nbfree * sblock.fs_frag +
|
|
|
|
sblock.fs_cstotal.cs_nffree;
|
|
|
|
sfsp->f_bavail = (sblock.fs_dsize * (100 - sblock.fs_minfree) / 100) -
|
|
|
|
(sblock.fs_dsize - sfsp->f_bfree);
|
|
|
|
if (sfsp->f_bavail < 0)
|
|
|
|
sfsp->f_bavail = 0;
|
|
|
|
sfsp->f_files = sblock.fs_ncg * sblock.fs_ipg;
|
|
|
|
sfsp->f_ffree = sblock.fs_cstotal.cs_nifree;
|
|
|
|
sfsp->f_fsid.val[0] = 0;
|
|
|
|
sfsp->f_fsid.val[1] = 0;
|
|
|
|
if ((mntpt = getmntpt(file)) == 0)
|
|
|
|
mntpt = "";
|
1994-09-17 00:59:27 +04:00
|
|
|
memmove(&sfsp->f_mntonname[0], mntpt, MNAMELEN);
|
|
|
|
memmove(&sfsp->f_mntfromname[0], file, MNAMELEN);
|
1994-05-17 08:06:00 +04:00
|
|
|
strncpy(sfsp->f_fstypename, MOUNT_UFS, MFSNAMELEN);
|
|
|
|
sfsp->f_fstypename[MFSNAMELEN] = '\0';
|
|
|
|
prtstat(sfsp, maxwidth);
|
1994-09-17 00:59:27 +04:00
|
|
|
(void)close(rfd);
|
1994-05-17 08:06:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
bread(off, buf, cnt)
|
1994-09-17 00:59:27 +04:00
|
|
|
off_t off;
|
|
|
|
void *buf;
|
1994-05-17 08:06:00 +04:00
|
|
|
int cnt;
|
|
|
|
{
|
1994-09-17 00:59:27 +04:00
|
|
|
int nr;
|
1994-05-17 08:06:00 +04:00
|
|
|
|
1994-09-17 00:59:27 +04:00
|
|
|
(void)lseek(rfd, off, SEEK_SET);
|
|
|
|
if ((nr = read(rfd, buf, cnt)) != cnt) {
|
|
|
|
/* Probably a dismounted disk if errno == EIO. */
|
|
|
|
if (errno != EIO)
|
|
|
|
(void)fprintf(stderr, "\ndf: %qd: %s\n",
|
|
|
|
off, strerror(nr > 0 ? EIO : errno));
|
1994-05-17 08:06:00 +04:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
usage()
|
|
|
|
{
|
1995-01-14 02:23:41 +03:00
|
|
|
(void)fprintf(stderr, "usage: df [-ikln] [-t type] [file | file_system ...]\n");
|
1994-05-17 08:06:00 +04:00
|
|
|
exit(1);
|
|
|
|
}
|