Files
conquest/agents/monarch/commands/shell.nim

11 lines
221 B
Nim
Raw Normal View History

import winim, osproc, strutils
2025-05-19 21:56:34 +02:00
import ../types
proc executeShellCommand*(command: seq[string]): TaskResult =
echo command.join(" ")
let (output, status) = execCmdEx(command.join(" "))
return output