5 lines
84 B
Nim
5 lines
84 B
Nim
|
|
import osproc
|
||
|
|
|
||
|
|
let exitCode = execCmd "ls"
|
||
|
|
let (output, exitCode2) = execCmdEx "ls"
|