checkincludes.pl
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #!/usr/bin/perl
  2. #
  3. # checkincludes: Find files included more than once in (other) files.
  4. # Copyright abandoned, 2000, Niels Kristian Bech Jensen <nkbj@image.dk>.
  5. foreach $file (@ARGV) {
  6. open(FILE, $file) or die "Cannot open $file: $!.n";
  7. my %includedfiles = ();
  8. while (<FILE>) {
  9. if (m/^s*#s*includes*[<"](S*)[>"]/o) {
  10. ++$includedfiles{$1};
  11. }
  12. }
  13. foreach $filename (keys %includedfiles) {
  14. if ($includedfiles{$filename} > 1) {
  15. print "$file: $filename is included more than once.n";
  16. }
  17. }
  18. close(FILE);
  19. }