File: mk.pl

package info (click to toggle)
libchado-perl 1.31-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 44,724 kB
  • sloc: sql: 282,721; xml: 192,553; perl: 25,524; sh: 102; python: 73; makefile: 57
file content (10 lines) | stat: -rwxr-xr-x 160 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env perl

foreach $f (@ARGV) {
    open(F,$f) || die("no $f");
    while(<F>) {
        next if /^\#/;
        print `cat $_`;
    }
    close(F);
}