ffzg/recall_notices.pl: added --interval and --dedup
[koha.git] / installer / externalmodules.pl
index 4be9965..0d338ab 100755 (executable)
@@ -1,12 +1,12 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
 
 # This Script can be used to provide a list of ALL external modules ***used*** (uncommented) in Koha.
 # It provides you not only the list of modules BUT ALSO the files that uses those modules.
 # utf8 or warnings or other lib use are not taken into account at the moment.
 
-
-use strict;
+use Modern::Perl;
 use C4::Context;
+
 my $dir=C4::Context->config('intranetdir');
 qx(grep -r "^ *use" $dir | grep -v "C4\|strict\|vars" >/tmp/modulesKoha.log);
 $dir=C4::Context->config('opacdir');