File: strip_data.pl

package info (click to toggle)
libmodule-starter-plugin-tt2-perl 0.125-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 200 kB
  • ctags: 11
  • sloc: perl: 151; makefile: 5
file content (10 lines) | stat: -rwxr-xr-x 105 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl
use strict;
use warnings;

while(<>) {
    exit(0) if $_ =~ /^__DATA__$/;
    print;
}