Gimme my `-k' option back!

This commit is contained in:
Garrett Wollman 1994-08-10 19:25:34 +00:00
parent 7f0eabfd0a
commit abb5479a19
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2009
2 changed files with 10 additions and 2 deletions

View File

@ -67,6 +67,11 @@ All symbolic links are followed.
No symbolic links are followed.
.It Fl a
Display an entry for each file in the file hierarchy.
.It Fl k
Report in 1024-byte (1-Kbyte) blocks rather than the default. Note that
this overrides the
.Ev BLOCKSIZE
setting from the environment.
.It Fl s
Display only the grand total for the specified files.
.It Fl x

View File

@ -73,7 +73,7 @@ main(argc, argv)
save = argv;
Hflag = Lflag = Pflag = aflag = sflag = 0;
ftsoptions = FTS_PHYSICAL;
while ((ch = getopt(argc, argv, "HLPasx")) != EOF)
while ((ch = getopt(argc, argv, "HLPaksx")) != EOF)
switch (ch) {
case 'H':
Hflag = 1;
@ -90,6 +90,9 @@ main(argc, argv)
case 'a':
aflag = 1;
break;
case 'k':
putenv("BLOCKSIZE=1024");
break;
case 's':
sflag = 1;
break;
@ -224,6 +227,6 @@ usage()
{
(void)fprintf(stderr,
"usage: du [-H | -L | -P] [-a | -s] [-x] [file ...]\n");
"usage: du [-H | -L | -P] [-a | -s] [-k] [-x] [file ...]\n");
exit(1);
}