Add shell interface

This commit is contained in:
世界 2022-08-16 17:43:10 +08:00
parent 7868451c90
commit 9719bdcd4a
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 42 additions and 17 deletions

View file

@ -1,17 +0,0 @@
package common
import (
"syscall"
)
func GetFileDescriptor(conn syscall.Conn) (uintptr, error) {
rawConn, err := conn.SyscallConn()
if err != nil {
return 0, err
}
var rawFd uintptr
err = rawConn.Control(func(fd uintptr) {
rawFd = fd
})
return rawFd, err
}

38
common/shell.go Normal file
View file

@ -0,0 +1,38 @@
package common
import (
"os"
"os/exec"
)
type Shell struct {
*exec.Cmd
}
func Exec(name string, args ...string) *Shell {
command := exec.Command(name, args...)
command.Env = os.Environ()
return &Shell{command}
}
func (s *Shell) SetDir(path string) *Shell {
s.Dir = path
return s
}
func (s *Shell) Attach() *Shell {
s.Stdin = os.Stdin
s.Stdout = os.Stderr
s.Stderr = os.Stderr
return s
}
func (s *Shell) SetEnv(env []string) *Shell {
s.Env = append(os.Environ(), env...)
return s
}
func (s *Shell) Read() (string, error) {
output, err := s.CombinedOutput()
return string(output), err
}

View file

@ -33,3 +33,7 @@ func SubstringBeforeLast(s string, substr string) string {
}
return s[:index]
}
func SubstringBetween(s string, after string, before string) string {
return SubstringBefore(SubstringAfter(s, after), before)
}