seaweedfs/go/weed/shell.go

54 lines
781 B
Go
Raw Normal View History

2012-08-24 11:56:09 +08:00
package main
import (
2013-01-17 16:56:56 +08:00
"bufio"
"fmt"
"os"
2012-08-24 11:56:09 +08:00
)
func init() {
2013-01-17 16:56:56 +08:00
cmdShell.Run = runShell // break init cycle
2012-08-24 11:56:09 +08:00
}
var cmdShell = &Command{
2013-01-17 16:56:56 +08:00
UsageLine: "shell",
Short: "run interactive commands, now just echo",
Long: `run interactive commands.
2012-08-24 11:56:09 +08:00
`,
}
2013-01-17 16:56:56 +08:00
var ()
2012-08-24 11:56:09 +08:00
func runShell(command *Command, args []string) bool {
2013-01-17 16:56:56 +08:00
r := bufio.NewReader(os.Stdin)
o := bufio.NewWriter(os.Stdout)
e := bufio.NewWriter(os.Stderr)
prompt := func() {
o.WriteString("> ")
o.Flush()
}
readLine := func() string {
ret, err := r.ReadString('\n')
if err != nil {
fmt.Fprint(e, err)
os.Exit(1)
}
return ret
}
execCmd := func(cmd string) int {
if cmd != "" {
o.WriteString(cmd)
}
return 0
}
2012-08-24 11:56:09 +08:00
2013-01-17 16:56:56 +08:00
cmd := ""
for {
prompt()
cmd = readLine()
execCmd(cmd)
}
return true
2012-08-24 11:56:09 +08:00
}