We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 036ea06 + 678ebc5 commit efd40beCopy full SHA for efd40be
bin/rm
@@ -19,7 +19,7 @@ rm - remove directory entries
19
20
=head1 SYNOPSIS
21
22
- rm [-fiPrR] file ...
+ rm [-fiPrRv] file ...
23
24
=head1 DESCRIPTION
25
@@ -37,7 +37,7 @@ rm - remove directory entries
37
38
=item * -R - remove directories recursively
39
40
-=item * -v
+=item * -v - show the name of each file after it is removed
41
42
=back
43
@@ -283,7 +283,7 @@ sub usage {
283
sub error_fh { my $self = shift; $self->{error_fh} }
284
sub error {
285
my $self = shift;
286
- print { $self->error_fh || * STDERR } @_;
+ print { $self->error_fh || *STDERR } @_;
287
}
288
289
sub output_fh { my $self = shift; $self->{output_fh} }
0 commit comments