mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
Add shell interface
This commit is contained in:
parent
7868451c90
commit
9719bdcd4a
3 changed files with 42 additions and 17 deletions
|
@ -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
38
common/shell.go
Normal 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
|
||||
}
|
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue