An open API service indexing awesome lists of open source software.

https://github.com/christian-korneck/argprint

inspect cmdline arguments
https://github.com/christian-korneck/argprint

args argument-parser arguments cmdline cmdline-parser

Last synced: 2 months ago
JSON representation

inspect cmdline arguments

Awesome Lists containing this project

README

        

# argprint

a simple troubleshooting tool that repeats the command line arguments that get passed to it. Useful to inspect escaping, etc. Can be used i.e. as a temporary wrapper for any other command:

```
$ alias docker=argprint
$ docker run --rm -ti fedora:34 /bin/bash -c "echo hello world"
-----------------
args: 8
argprint
run
--rm
-ti
fedora:34
/bin/bash
-c
echo hello world
-----------------
$ unalias docker
```