1 Star 0 Fork 18

西城小猴/ebookdownloader

forked from sndnvaps/ebookdownloader 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Kindlegen_linux_arm.go 479 Bytes
一键复制 编辑 原始数据 按行查看 历史
// +build linux
// +build !windows
// +build !386 !amd64 !arm64
// +build arm
package ebookdownloader
import (
"os/exec"
"path/filepath"
)
//KindlegenCmd 执行外部kindlegen命令
func KindlegenCmd(args ...string) *exec.Cmd {
var cmds []string
path, _ := filepath.Abs("./tools/kindlegenLinux")
qemu_path, _ := filepath.Abs("./tools/qemu-i386-static-armhf")
cmds = append(cmds, path)
cmds = append(cmds, args...)
cmd := exec.Command(qemu_path, cmds...)
return cmd
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/xichengxiaohou/ebookdownloader.git
[email protected]:xichengxiaohou/ebookdownloader.git
xichengxiaohou
ebookdownloader
ebookdownloader
master

搜索帮助