1 Star 0 Fork 0

chirdxing/gopsutil

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
mktypes.sh 403 Bytes
一键复制 编辑 原始数据 按行查看 历史
shirou 提交于 2024-02-17 11:37 . fix mktypes.sh
#!/bin/sh
PKGS="cpu disk docker host load mem net process sensors winservices"
GOOS=$(go env GOOS)
GOARCH=$(go env GOARCH)
for PKG in $PKGS
do
if [ -e "${PKG}/types_${GOOS}.go" ]; then
(echo "// +build $GOOS"
echo "// +build $GOARCH"
go tool cgo -godefs "${PKG}/types_${GOOS}.go") | gofmt > "${PKG}/${PKG}_${GOOS}_${GOARCH}.go"
fi
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chirdxing/gopsutil.git
git@gitee.com:chirdxing/gopsutil.git
chirdxing
gopsutil
gopsutil
master

搜索帮助