dev.go 179 B

123456789101112
  1. package control
  2. import (
  3. "fmt"
  4. "github.com/codegangsta/cli"
  5. "github.com/rancherio/os/util"
  6. )
  7. func devAction(c *cli.Context) {
  8. fmt.Println(util.ResolveDevice(c.Args()[0]))
  9. }