Created
February 9, 2015 02:51
-
-
Save olekukonko/2584c9edc8ad8880886c to your computer and use it in GitHub Desktop.
The Nate Shells Out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"os" | |
"os/exec" | |
) | |
type SSHCommander struct { | |
User string | |
IP string | |
} | |
func (s *SSHCommander) Command(cmd ...string) *exec.Cmd { | |
arg := append( | |
[]string{ | |
fmt.Sprintf("%s@%s", s.User, s.IP), | |
}, | |
cmd..., | |
) | |
return exec.Command("ssh", arg...) | |
} | |
func main() { | |
commander := SSHCommander{"root", "50.112.213.24"} | |
cmd := []string{ | |
"apt-get", | |
"install", | |
"-y", | |
"jq", | |
"golang-go", | |
"nginx", | |
} | |
// am I doing this automation thing right? | |
if err := commander.Command(cmd...); err != nil { | |
fmt.Fprintln(os.Stderr, "There was an error running SSH command: ", err) | |
os.Exit(1) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bufio" | |
"fmt" | |
"os" | |
"os/exec" | |
) | |
func main() { | |
// docker build current directory | |
cmdName := "docker" | |
cmdArgs := []string{"build", "."} | |
cmd := exec.Command(cmdName, cmdArgs...) | |
cmdReader, err := cmd.StdoutPipe() | |
if err != nil { | |
fmt.Fprintln(os.Stderr, "Error creating StdoutPipe for Cmd", err) | |
os.Exit(1) | |
} | |
scanner := bufio.NewScanner(cmdReader) | |
go func() { | |
for scanner.Scan() { | |
fmt.Printf("docker build out | %s\n", scanner.Text()) | |
} | |
}() | |
err = cmd.Start() | |
if err != nil { | |
fmt.Fprintln(os.Stderr, "Error starting Cmd", err) | |
os.Exit(1) | |
} | |
err = cmd.Wait() | |
if err != nil { | |
fmt.Fprintln(os.Stderr, "Error waiting for Cmd", err) | |
os.Exit(1) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment