commit 8b5fcc7bfc2369acfddbeb1912e780bea833ef0a Author: Jonathan Bernard Date: Fri Aug 25 18:03:51 2017 -0500 Initial commit (version 0.1.0). diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7b92717 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.sw? +nimcache/ +cmd_shell diff --git a/cmd_shell.nim b/cmd_shell.nim new file mode 100644 index 0000000..6a1b321 --- /dev/null +++ b/cmd_shell.nim @@ -0,0 +1,30 @@ +import cliutils, linenoise, os, osproc, sequtils, strutils + +proc writeOutput(msg, errMsg: TaintedString, cmd: string): void = + if msg != nil: stdout.writeLine(msg) + if errMsg != nil: stderr.writeLine(errMsg) + +when isMainModule: + + if paramCount() == 0: + stderr.writeLine "cmd_shell: no arguments" + quit(QuitFailure) + + let cmdPrompt = paramStr(1) + let cmd = '"' & cmdPrompt & '"' + + let args = + if paramCount() > 1: commandLineParams()[1..^1].mapIt("'" & $it & "'").join(" ") + else: "" + + discard historySetMaxLen( + if existsEnv("HISTSIZE"): (cint)parseInt(getEnv("HISTSIZE")) + else: (cint)1000) + + var line = readLine(cmdPrompt & "> ") + + while line != nil: + discard exec(cmd & " " & args & $line, "", [], nil, {poUsePath, poEvalCommand}, writeOutput) + historyAdd(line) + line = readLine(cmdPrompt & "> ") + diff --git a/cmd_shell.nimble b/cmd_shell.nimble new file mode 100644 index 0000000..420297d --- /dev/null +++ b/cmd_shell.nimble @@ -0,0 +1,11 @@ +# Package + +version = "0.1.0" +author = "Jonathan Bernard" +description = "Wrapper around CLI commands (passing input as arguments)." +license = "MIT" +bin = @["cmd_shell"] + +# Dependencies + +requires @["nim >= 0.16.1", "cliutils"]