Command Line Interface¶
Command line utilities
usage: mypielib [-h] [-V] {xxargs} ...
Positional Arguments¶
- command
Possible choices: xxargs
Available subcommands
Named Arguments¶
- -V, --version
show program’s version number and exit
Sub-commands¶
xxargs¶
Like xargs but with file_args support
mypielib xxargs [-h] [-d DELIMITER] [-0] [-s] [-a ARG_FILE] [-n MAX_ARGS] [-o]
[-t]
[cmd ...]
Positional Arguments¶
- cmd
Command to execute
Default:
[]
Named Arguments¶
- -d, --delimiter
Input items are terminated by the specified character
Default:
' '
- -0, --null
Input items are terminated by a null character
- -s, --space
Input items are terminated by whitespace
- -a, --arg-file
Read items from file instead of standard input.
Default:
<_io.TextIOWrapper name='<stdin>' mode='r' encoding='utf-8'>
- -n, --max-args
Use at most max-args arguments per command line.
- -o, --open-tty
Reopen stdin as /dev/tty in the child process before executing the command.
Default:
False
- -t, --verbose
Print the command line on the standard error output before executing it.
Default:
False