Skip to content

Instantly share code, notes, and snippets.

package csvdata
// csvdata complements the csv package by allowing you to map a custom structure to
// the columns of data in a CSV file. The struct needs to be annotated so that each
// field can match a column in the data
//
// type Person struct {
// FirstName string `field:"First Name"`
// Second_Name string
// Age int
// }
@nerdatmath
nerdatmath / goshell.go
Last active August 29, 2015 14:17 — forked from lee8oi/goshell.go
package main
import (
"io"
"log"
"os"
"os/exec"
)
func Command(args ...string) {