Default to appending passed arguments with the option to switch back to prepending.

This commit is contained in:
Jonathan Bernard 2021-01-29 10:11:33 -06:00
parent f2ccce1f17
commit 2059fd52c9
2 changed files with 15 additions and 9 deletions

View File

@ -1,4 +1,4 @@
import cliutils, linenoise, os, osproc, sequtils, strutils
import cliutils, docopt, linenoise, os, osproc, sequtils, strutils
proc writeOutput(msg, errMsg: TaintedString, cmd: string): void =
if not msg.isEmptyOrWhitespace: stdout.writeLine(msg)
@ -6,15 +6,18 @@ proc writeOutput(msg, errMsg: TaintedString, cmd: string): void =
when isMainModule:
if paramCount() == 0:
stderr.writeLine "cmd_shell: no arguments"
quit(QuitFailure)
let usage = """
Usage:
cmd_shell [--prepend-args] <cmd> [-- <args>...]
"""
# Parse arguments
let args = docopt(usage, version = "1.1.0")
let cmdPrompt = paramStr(1)
let cmdPrompt = $args["<cmd>"]
let cmd = '"' & cmdPrompt & '"'
let args =
if paramCount() > 1: commandLineParams()[1..^1].mapIt("'" & $it & "'").join(" ")
let argsForCmd =
if args["<args>"]: @(args["<args>"]).mapIt("'" & $it & "'").join(" ")
else: ""
discard historySetMaxLen(
@ -24,6 +27,9 @@ when isMainModule:
var line = readLine(cmdPrompt & "> ")
while line != nil:
discard exec(cmd & " " & args & $line, "", [], nil, {poUsePath, poEvalCommand}, writeOutput)
if args["--prepend-args"]:
discard exec(cmd & " " & argsForCmd & " " & $line, "", [], nil, {poUsePath, poEvalCommand}, writeOutput)
else:
discard exec(cmd & " " & $line & " " & argsForCmd, "", [], nil, {poUsePath, poEvalCommand}, writeOutput)
historyAdd(line)
line = readLine(cmdPrompt & "> ")

View File

@ -1,6 +1,6 @@
# Package
version = "1.0.0"
version = "1.1.0"
author = "Jonathan Bernard"
description = "Wrapper around CLI commands (passing input as arguments)."
license = "MIT"