#!/usr/bin/perl ##################################################################### # # # Check system dependences between php-pear modules # # # # Paweł Gołaszewski # # Michał Moskal # # ------------------------------------------------------------------# # TODO: # ##################################################################### die "You have to specify input files" if (@ARGV < 1); $pear = "/usr/share/pear"; while (@ARGV > 0) { $f = shift; next unless ($f =~ /$pear.*\.php$/); $f =~ s/.*$pear\///; print "pear($f)\n"; }