28 lines
391 B
Go
28 lines
391 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
func main() {
|
|
scanner := bufio.NewScanner(os.Stdin)
|
|
for scanner.Scan() {
|
|
line := scanner.Text()
|
|
if strings.Contains(line, ".pb.") {
|
|
continue
|
|
}
|
|
if strings.Contains(line, ".dbx.") {
|
|
continue
|
|
}
|
|
fmt.Println(line)
|
|
}
|
|
}
|