gostations/stations.go

43 lines
916 B
Go

package main
import (
"flag"
"fmt"
"os"
)
func main(){
argCount := len(os.Args[1:])
var (
name string
country string
state string
tags string
)
flag.Usage = func() {
fmt.Printf("Usage: \n")
fmt.Printf(" gostations ")
fmt.Printf(" [-n \"name\"] [-c \"home country\"] [-s \"home state\"] [-t \"ordered,tag,list\"]\n")
flag.PrintDefaults()
fmt.Printf(" -h (or none)\n")
fmt.Printf("\tThis help message\n")
}
flag.StringVar(&name, "n", "", "Station name (or identifier).")
flag.StringVar(&country, "c", "", "Home country.")
flag.StringVar(&state, "s", "", "Home state (if in the United States).")
flag.StringVar(&tags, "t", "", "Tag (or comma-separated tag list)")
flag.Parse()
if argCount == 0 {
flag.Usage()
}
stations, _ := StationSearch(name, country, state, tags)
fmt.Println(len(stations))
for _, station := range stations {
fmt.Printf("%+v\n", station)
}
}