Not super helpful, because `tmpdir' starts out at verbosity zero, but an
aesthetic improvement.
tmpdir \- choose, or check a choice of, temporary directory
.SH SYNOPSIS
.B tmpdir
tmpdir \- choose, or check a choice of, temporary directory
.SH SYNOPSIS
.B tmpdir
.RB [ \-C
.IR dir ]
.RB [ \-g
.RB [ \-C
.IR dir ]
.RB [ \-g
.IR group :
consider directories they can write to be safe.
.TP
.IR group :
consider directories they can write to be safe.
.TP
+.B "\-q, \-\-quiet"
+Be less verbose; cancel out a
+.B \-v
+option.
+.TP
.B "-v, \-\-verbose"
Report problems to standard error. Repeat for more verbosity.
.SH BUGS
.B "-v, \-\-verbose"
Report problems to standard error. Repeat for more verbosity.
.SH BUGS
{ "bourne", 0, 0, 'b' },
{ "cshell", 0, 0, 'c' },
{ "group", OPTF_ARGREQ, 0, 'g' },
{ "bourne", 0, 0, 'b' },
{ "cshell", 0, 0, 'c' },
{ "group", OPTF_ARGREQ, 0, 'g' },
+ { "quiet", 0, 0, 'q' },
{ "verbose", 0, 0, 'v' },
{ 0, 0, 0, 0 }
};
{ "verbose", 0, 0, 'v' },
{ 0, 0, 0, 0 }
};
case 'g':
allowgroup(&cp, optarg);
break;
case 'g':
allowgroup(&cp, optarg);
break;
+ case 'q':
+ if (cp.cp_verbose)
+ cp.cp_verbose--;
+ break;
case 'v':
cp.cp_verbose++;
break;
case 'v':
cp.cp_verbose++;
break;