# proc **Repository Path**: go-wena/proc ## Basic Information - **Project Name**: proc - **Description**: go package `os/exec` 的封装 - **Primary Language**: Go - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-06-15 - **Last Updated**: 2021-09-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # exec go package `os/exec` 的封装 _**usage:**_ ```go import "gitee.com/go-wena/proc" func main(){ err := proc.Command("sh", "-c", "ls -la"). ReadOut(PrintLine("OUT")). ReadErr(PrintLine("ERR")). Verbose(). Start() if err != nil { t.Fatal(err) } } ```