(str string, field []string, name string)
| 250 | } |
| 251 | |
| 252 | func readFile(str string, field []string, name string) []string { |
| 253 | if strings.HasPrefix(str, "file:") { |
| 254 | return ReadLocalFile(str, name) |
| 255 | } else { |
| 256 | return append(field, str) |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | func help() { |
| 261 | w := new(tabwriter.Writer) |
no test coverage detected