Add -y option which doesn't ask for confimation, but still shows progress

PR:		9259
Submitted by:	Clark Gaylord <cgaylord@vt.edu>
This commit is contained in:
Poul-Henning Kamp 2000-06-01 22:27:30 +00:00
parent 6e891d64ed
commit d2c1dda326
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=61154
2 changed files with 12 additions and 4 deletions

View File

@ -33,6 +33,7 @@
.Sh SYNOPSIS
.Nm fdformat
.Op Fl q
.Op Fl y
.Op Fl v | Fl n
.Op Fl f Ar capacity
.Op Fl c Ar cyls
@ -73,6 +74,9 @@ The options are as follows:
Suppress any normal output from the command, and don't ask the
user for a confirmation whether to format the floppy disk at
.Ar device_name .
.It Fl y
Suppress confirmation request by automagically responding "yes", but still
report format status.
.It Fl f Ar capacity
The normal way to specify the desired formatting parameters.
.Ar Capacity

View File

@ -140,7 +140,7 @@ static void
usage (void)
{
fprintf(stderr, "%s\n%s\n",
"usage: fdformat [-q] [-n | -v] [-f #] [-c #] [-s #] [-h #]",
"usage: fdformat [-y] [-q] [-n | -v] [-f #] [-c #] [-s #] [-h #]",
" [-r #] [-g #] [-i #] [-S #] [-F #] [-t #] devname");
exit(2);
}
@ -170,12 +170,12 @@ main(int argc, char **argv)
{
int format = -1, cyls = -1, secs = -1, heads = -1, intleave = -1;
int rate = -1, gaplen = -1, secsize = -1, steps = -1;
int fill = 0xf6, quiet = 0, verify = 1, verify_only = 0;
int fill = 0xf6, quiet = 0, verify = 1, verify_only = 0, confirm = 0;
int fd, c, track, error, tracks_per_dot, bytes_per_track, errs;
const char *devname, *suffix;
struct fd_type fdt;
while((c = getopt(argc, argv, "f:c:s:h:r:g:S:F:t:i:qvn")) != -1)
while((c = getopt(argc, argv, "f:c:s:h:r:g:S:F:t:i:qyvn")) != -1)
switch(c) {
case 'f': /* format in kilobytes */
format = atoi(optarg);
@ -221,6 +221,10 @@ main(int argc, char **argv)
quiet = 1;
break;
case 'y':
confirm = 1;
break;
case 'n':
verify = 0;
break;
@ -291,7 +295,7 @@ main(int argc, char **argv)
fdt.tracks * fdt.heads * bytes_per_track / 1024,
devname);
}
else if(!quiet) {
else if(!quiet && !confirm) {
printf("Format %dK floppy `%s'? (y/n): ",
fdt.tracks * fdt.heads * bytes_per_track / 1024,
devname);