X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Ffiles%2Fsafedel.pl;h=6b8ed29a3419cddab46db8dec93e8b58102cfceb;hb=22d314ce2d5c2a755ae98112fdfed9879233e194;hp=010cd959d83976bb61263867142a85e291135605;hpb=d0e1480958985bb8d84cba626076f8f8a3c85344;p=feisty_meow.git diff --git a/scripts/files/safedel.pl b/scripts/files/safedel.pl index 010cd959..6b8ed29a 100644 --- a/scripts/files/safedel.pl +++ b/scripts/files/safedel.pl @@ -63,7 +63,8 @@ exit 0; sub safedel { # get the list of files and directories to whack. local(@to_delete) = &glob_list(@_); -print "list of whackees: @to_delete\n"; +#hmmm: make this into a debug option. +#print "list of whackees: @to_delete\n"; # we store the deleted files in a directory under the temporary directory. if (! -d $TMP) { @@ -147,7 +148,11 @@ print "list of whackees: @to_delete\n"; print REPORT $printable_date . " -- from [@deleted]\n"; close(REPORT); } else { - print "No files were deleted.\n"; +#hmmm: oh good, and we should always bug people about nothing having been done? +# this is especially tiresome when our own scripts cause safedel to be invoked, +# since then they are automatically noisy and blathery. +#hmmm: make this into a debug option. +# print "No files were deleted.\n"; } }