运行外部程序的方法是什么?

huangapple go评论50阅读模式
英文:

How to run an external program?

问题

怎样运行外部程序?

我希望Nim程序将运行另一个程序的stdout输出打印到终端。

英文:

How to run an external program?

I want the Nim program to print the stdout output from running another program to the terminal.

答案1

得分: 2

一个简单的方法是使用标准库中的 osproc

import osproc

let result = execProcess("python", args=["-h"], options={poUsePath})
echo(result)
英文:

One simple way is to use the osproc from the standard library:

import osproc

let result = execProcess("python", args=["-h"], options={poUsePath})
echo(result)

答案2

得分: 0

如果你想要自动重定向输出:

import std/osproc
const Opt: set[ProcessOption] = {
  poUsePath,
  poParentStreams
}
let p = startProcess("python", args=["-h"], options=Opt)
discard p.waitForExit()
p.close()
英文:

If you want a auto-redirect output:

import std/osproc
const Opt: set[ProcessOption] = {
  poUsePath,
  poParentStreams
}
let p = startProcess("python", args=["-h"], options=Opt)
discard p.waitForExit()
p.close()

huangapple
  • 本文由 发表于 2023年3月12日 17:51:48
  • 转载请务必保留本文链接:https://go.coder-hub.com/75712315.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定