maint: Update HACKING
[automake.git] / t / ax / deltree.pl
blobf239057aa36ec21f010b85757fd2b4403fc9f19f
1 #!/usr/bin/env perl
2 # deltree: recursively removes file and directory,
3 # trying to handle permissions and other complications.
5 # Copyright (C) 2013-2017 Free Software Foundation, Inc.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
10 # any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <https://www.gnu.org/licenses/>.
20 use strict;
21 use warnings FATAL => 'all';
22 use File::Path qw/rmtree/;
24 my $exit_status = 0;
25 local $SIG{__WARN__} = sub { warn "@_"; $exit_status = 1; };
27 foreach my $path (@ARGV) {
28 local $@ = undef;
29 rmtree ($path);
32 exit $exit_status;
34 # vim: ft=perl ts=4 sw=4 et