exec包執行外部命令,它將os.startprocess進行包裝使得它更容易對映到stdin和stdout,並且利用pipe連線i/o.
func lookpath(file string) (string, error) //lookpath在環境變數中查詢科執行二進位制檔案,如果file中包含乙個斜槓,則直接根據絕對路徑或者相對本目錄的相對路徑去查詢
[html]view plain
copy
?
func main()
fmt.println(f) // /bin/ls
}
func main()
fmt.println(f) // /bin/ls
}
type cmd //表示乙個正在準備或者正在執行的外部命令
[html]view plain
copy
?
type cmd struct
type cmd struct
func command(name string, arg ...string) *cmd //command返回cmd結構來執行帶有相關引數的命令,它僅僅設定cmd結構中的path和args引數,如果name引數中不包含路徑分隔符,command使用lookpath來解決路徑問題,否則的話就直接使用name;args直接跟在command命令之後,所以在args中不許要新增命令.
[html]view plain
copy
?
func main()
fmt.printf("in all caps: %q\n", out.string()) //in all caps: "some input"
}
func main()
fmt.printf("in all caps: %q\n", out.string()) //in all caps: "some input"
}
func (c *cmd) combinedoutput() (byte, error) //執行命令,並返回標準輸出和標準錯誤
[html]view plain
copy
?
func main()
fmt.println(string(out))
}
func main()
fmt.println(string(out))
}
func (c *cmd) output() (byte, error) //執行命令並返回其標準輸出
[html]view plain
copy
?
func main()
fmt.println(string(out))
}
func main()
fmt.println(string(out))
}
注意:output()和combinedoutput()不能夠同時使用,因為command的標準輸出只能有乙個,同時使用的話便會定義了兩個,便會報錯
func (c *cmd) run() error //
開始指定命令並且等待他執行結束,如果命令能夠成功執行完畢,則返回nil,否則的話邊會產生錯誤
func (c *cmd) start() error //
使某個命令開始執行,但是並不等到他執行結束,這點和run命令有區別.然後使用wait方法等待命令執行完畢並且釋放響應的資源
[html]view plain
copy
?
func main()
func main()
注:乙個command只能使用start()或者run()中的乙個啟動命令,不能兩個同時使用.
func (c *cmd) stderrpipe() (io.readcloser, error) //stderrpipe返回乙個pipe,這個管道連線到command的標準錯誤,當command命令退出時,wait將關閉這些pipe
func (c *cmd) stdinpipe() (io.writecloser, error) //stdinpipe返回乙個連線到command標準輸入的管道pipe
[html]view plain
copy
?
package main
import (
"fmt"
"os"
"os/exec"
) func main()
_, err = stdin.write(byte("tmp.txt"))
if err != nil
stdin.close()
cmd.stdout = os.stdout //終端標準輸出tmp.txt
cmd.start()
}
package main
import (
"fmt"
"os"
"os/exec"
)func main()
_, err = stdin.write(byte("tmp.txt"))
if err != nil
stdin.close()
cmd.stdout = os.stdout //終端標準輸出tmp.txt
cmd.start()
}
func (c *cmd) stdoutpipe() (io.readcloser, error) //stdoutpipe返回乙個連線到command標準輸出的管道pipe
[html]view plain
copy
?
func main()
fmt.println(string(content)) //輸出ls命令檢視到的內容
}
func main()
fmt.println(string(content)) //輸出ls命令檢視到的內容
}
func (c *cmd) wait() error //wait等待command退出,他必須和start一起使用,如果命令能夠順利執行完並順利退出則返回nil,否則的話便會返回error,其中wait會是放掉所有與cmd命令相關的資源
type error //error返回科執行二進位制檔案名字不能夠執行的原因的錯誤
[html]view plain
copy
?
type error struct
type error struct
func (e *error) error() string
type exiterror //乙個command不能夠正常退出的error
[html]view plain
copy
?
type exiterror struct
type exiterror struct
func (e *exiterror) error() string
參考:
golang中os exec包用法
exec包執行外部命令,它將os.startprocess進行包裝使得它更容易對映到stdin和stdout,並且利用pipe連線i o func lookpath file string string,error lookpath在環境變數中查詢科執行二進位制檔案,如果file中包含乙個斜槓,則直...
golang中strings包用法
1.strings.split split 以 sep 為分隔符,將 s 切分成多個子切片,結果中不包含 sep 本身 如果 sep 為空,則將 s 切分成 unicode 字元列表。如果 s 中沒有 sep 子串,則將整個 s 作為 string 的第乙個元素返回 func split s,sep...
golang中os user包用法
os user包允許使用者賬號通過使用者名稱或者使用者id查詢使用者 type unknownusererror type unknownusererror string func e unknownusererror error string 當通過lookup無法查詢到某個使用者時,便會返回該錯...