如何更改代码而不是显示代码(fmt.Printf)来执行命令(exec.Command)
现在我有了这个
//打印键
fmt.Printf(“%x%34s%34s \ n”,已填充,uaddr.EncodeAddress(),caddr.EncodeAddress())
如何为'g'和'h'赋予变量值:
v := "cmd"
n := "/C"
a := "testcmd"
b := "-connect=127.0.0.1"
c := "-port=3333"
d := "-user=username"
e := "-password=password"
f := "importaddress"
g := "AddressHere"
h := "MoreInfo"
z := exec.Command(v, n, a, b, c, d, e, f, g, h)
if err := z.Run(); err != nil {
fmt.Println("Error: ", err)
}
我需要给这个变量赋值:
h := fmt.Printf("%x\n", padded)
g := fmt.Printf("%34s\n", uaddr.EncodeAddress())
g := fmt.Printf("%34s\n", caddr.EncodeAddress())
使用不同的变量两次执行命令
答案 0 :(得分:1)
您可以使用fmt.Sprintf()
示例:
g := fmt.Sprintf("%s", uaddr.EncodeAddress())
Sprintf根据格式说明符设置格式,并返回结果字符串。然后,您可以将相同的值用于变量。