Documentation
¶
Index ¶
- type Command
- func (c *Command) CombinedOutput() ([]byte, error)
- func (c *Command) Output() ([]byte, error)
- func (c *Command) Run() error
- func (c *Command) Start() error
- func (c *Command) StderrPipe() (io.Reader, error)
- func (c *Command) StdinPipe() (io.WriteCloser, error)
- func (c *Command) StdoutPipe() (io.Reader, error)
- func (c *Command) String() string
- func (c *Command) Wait() error
- type Option
- type RemoteSession
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Command ¶
type Command struct {
// contains filtered or unexported fields
}
func (*Command) CombinedOutput ¶
type RemoteSession ¶
type RemoteSession interface { Close() error CombinedOutput(cmd string) ([]byte, error) Output(cmd string) ([]byte, error) Run(cmd string) error Setenv(name string, value string) error Shell() error Signal(sig ssh.Signal) error Start(cmd string) error StderrPipe() (io.Reader, error) StdinPipe() (io.WriteCloser, error) StdoutPipe() (io.Reader, error) Wait() error }
Click to show internal directories.
Click to hide internal directories.