当前位置:网站首页>十二. golang其他
十二. golang其他
2022-07-04 05:05:00 【愿乘长风、破万里浪】
1. 执行脚本
如下golang可以执行python脚本
package main
import (
"fmt"
"os/exec"
)
func main() {
cmd := exec.Command("/usr/local/bin/python3.9", "/Users/haha/GolandProjects/awesomeProject5/test.py")
// 命令的错误输出和标准输出都连接到同一个管道
stdout, err := cmd.StdoutPipe()
cmd.Stderr = cmd.Stdout
if err != nil {
return
}
err = cmd.Start()
if err != nil {
return
}
// 从管道中实时获取输出并打印到终端
for {
tmp := make([]byte, 1024)
_, err := stdout.Read(tmp)
fmt.Print(string(tmp))
if err != nil {
break
}
}
if err = cmd.Wait(); err != nil {
return
}
}
python脚本如下:
#!usr/bin/python3
assert 3 == 4
执行结果:
Traceback (most recent call last):
File "/Users/haha/GolandProjects/awesomeProject5/test.py", line 2, in <module>
assert 3 == 4
AssertionError
err = exit status 1
边栏推荐
- Zhongke Panyun - module a infrastructure setting and safety reinforcement scoring standard
- 海力士EMMC5.0及5.1系列对比详解
- Daily question brushing record (12)
- [wechat applet] template and configuration (wxml, wxss, global and page configuration, network data request)
- 中科磐云—2022广西逆向解析思路
- [matlab] matlab simulates digital baseband transmission system - digital baseband transmission system
- Unity2D--人物移动并转身
- [matlab] matlab simulates digital bandpass transmission system ask, PSK, FSK system
- RSA加密应用常见缺陷的原理与实践
- 小程序毕业设计---美食、菜谱小程序
猜你喜欢
[QT] timer
Zhongke Panyun - module a infrastructure setting and safety reinforcement scoring standard
C basic (VII) document operation
Trie数-字典树
KMP匹配字符串
【QT】制作MyComboBox点击事件
Unity is connected to the weather system
2022年R2移动式压力容器充装复训题库及答案
NTFS 安全权限
[wechat applet] template and configuration (wxml, wxss, global and page configuration, network data request)
随机推荐
[技术发展-25]:广播电视网、互联网、电信网、电网四网融合技术
拓扑排序和关键路径的图形化显示
Li Kou's 300th weekly match
Analysis of classical pointer and array written test questions in C language
简易零钱通
Character types of C language
Customize a pager needed in your project
[matlab] matlab simulates digital baseband transmission system eye diagram of bipolar baseband signal (cosine roll off forming pulse)
[matlab] general function of communication signal modulation - generation of narrow-band Gaussian white noise
Unity2D--人物移动并转身
Zzulioj:1201: mode problem
IP时代来临,电竞酒店如何借好游戏的“东风”?
[untitled]
Just do it with your hands 7 - * project construction details 2 - hook configuration
flink1.13 sql基础语法(二)join操作
Flutter ‘/usr/lib/libswiftCore. dylib‘ (no such file)
[matlab] matlab simulation modulation system - DSB system
2022年R2移动式压力容器充装复训题库及答案
Zhongke panyun-2022 Guangdong Trojan horse information acquisition and analysis
抓包整理外篇fiddler———— 会话栏与过滤器