File: classificationQualityStripper.pl

package info (click to toggle)
rtax 0.984-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 316 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;
}