File: classificationQualityStripper.pl

package info (click to toggle)
rtax 0.984-7
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 308 kB
  • sloc: perl: 1,123; sh: 203; makefile: 2
file content (7 lines) | stat: -rwxr-xr-x 93 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
#!/usr/bin/perl

while (<STDIN>) {
	my $line = $_;
	$line =~ s/;[^\t\n]*//g;
	print $line;
}