Skip to content

NICEXAI/command

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

command

exec-based command tools.

Installation

Run the following command under your project:

go get -u github.com/NICEXAI/command

Basic Usage

If I want to execute the following command:

go build -o ./example/example.exe ./example/example.go

you can:

    if cmd, err := command.Run("go", "build", "-o", "./example/example.exe", "./example/example.go"); err != nil {
        log.Printf("command exec failed, error: %v", err)
        return
    }

    cmd.Wait()
    log.Printf("command exec success, error: %v", err)

If you want to stop the currently executing command, you can use cmd.Stop(), for example:

    cmd, err = command.Run("./example/example.exe")
    if err != nil {
        log.Printf("command exec failed, error: %v", err)
        return
    }

    go func() {
        time.Sleep(10 * time.Second)
        log.Println("process begins to exit")
        cmd.Stop()
    }()

    cmd.Wait()
    log.Printf("process exit success, error: %v", err)

About

exec-based command tools.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages