aboutsummaryrefslogtreecommitdiffstats
path: root/strip-rfc-delimiters.rb
blob: 1628d01454767a26f42effbfa3233c2868fed2b1 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env ruby

while gets
  next if $_ =~ /^[A-Z].*\[Page \d+\]$/
  next if $_ =~ /^\x0c$/
  next if $_ =~ /^RFC \d+ .* \d{4}$/

  print $_
end