Perl code for git-clean
From: Randal L. Schwartz <hidden>
Date: 2016-06-15 22:43:09
From: Randal L. Schwartz <hidden>
Date: 2016-06-15 22:43:09
OK, this is untested, but I usually get this stuff right
by eyeballing it. :)
export cleandir;
git-ls-files -z --others --directory $excl ${excl_info:+"$excl_info"} -- "$@" |
perl -ln0e '
use File::Path qw(rmtree);
if (-d and not -L) {
if (not $ENV{cleandir}) {
print "Not removing $_";
next;
}
print "Removing $_";
rmtree($_);
} else {
print "Removing $_";
unlink($_);
}
'
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
[off-list ref] <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!