Start pmerge

This commit is contained in:
Neale Pickett 2014-11-12 18:54:51 -07:00
parent f85d32c600
commit 8c2ff9ddb7
1 changed files with 17 additions and 0 deletions

17
src/pmerge/pmerge.go Normal file
View File

@ -0,0 +1,17 @@
package main
import (
"fmt"
"flag"
//"os"
//"pcap"
)
func main() {
flag.Parse()
for i := 0; i < flag.NArg(); i += 1 {
fn := flag.Arg(i)
fmt.Println(fn)
}
}