1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2026-06-19 22:28:17 +02:00

fix stdin stder quoting

This commit is contained in:
Kelly Brazil
2022-05-26 16:03:30 -07:00
parent 28ebb4e8dd
commit 08fbde0e8f
13 changed files with 27 additions and 23 deletions
+3 -2
View File
@@ -31,8 +31,9 @@ except empty strings, which are converted to None/null.
> Note: table column separator characters (e.g. `|`) cannot be present
> inside the cell data. If detected, a warning message will be printed to
> STDERR and the line will be skipped. The warning message can be suppressed
> by using the `-q` command option or by setting `quiet=True` in `parse()`.
> `STDERR` and the line will be skipped. The warning message can be
> suppressed by using the `-q` command option or by setting `quiet=True` in
> `parse()`.
Usage (cli):
+1 -1
View File
@@ -6,7 +6,7 @@
jc - JSON Convert `rsync` command output parser
Supports the `-i` or `--itemize-changes` options with all levels of
verbosity. This parser will process the STDOUT output or a log file
verbosity. This parser will process the `STDOUT` output or a log file
generated with the `--log-file` option.
Usage (cli):
+1 -1
View File
@@ -9,7 +9,7 @@ jc - JSON Convert `rsync` command output streaming parser
> Dictionaries (module)
Supports the `-i` or `--itemize-changes` options with all levels of
verbosity. This parser will process the STDOUT output or a log file
verbosity. This parser will process the `STDOUT` output or a log file
generated with the `--log-file` option.
Usage (cli):
+3 -2
View File
@@ -8,8 +8,9 @@ jc - JSON Convert `top -b` command output parser
Requires batch mode (`-b`). The `-n` option must also be used to limit
the number of times `top` is run.
Warning messages will be printed to STDERR if truncated fields are detected.
These warnings can be suppressed with the `-q` or `quiet=True` option.
Warning messages will be printed to `STDERR` if truncated fields are
detected. These warnings can be suppressed with the `-q` or `quiet=True`
option.
Usage (cli):
+3 -3
View File
@@ -27,7 +27,7 @@ jc - JSON Convert utils
def warning_message(message_lines: List[str]) -> None
```
Prints warning message to STDERR for non-fatal issues. The first line
Prints warning message to `STDERR` for non-fatal issues. The first line
is prepended with 'jc: Warning - ' and subsequent lines are indented.
Wraps text as needed based on the terminal width.
@@ -47,7 +47,7 @@ Returns:
def error_message(message_lines: List[str]) -> None
```
Prints an error message to STDERR for fatal issues. The first line is
Prints an error message to `STDERR` for fatal issues. The first line is
prepended with 'jc: Error - ' and subsequent lines are indented.
Wraps text as needed based on the terminal width.
@@ -80,7 +80,7 @@ def compatibility(mod_name: str,
```
Checks for the parser's compatibility with the running OS platform and
prints a warning message to STDERR if not compatible and quiet=False.
prints a warning message to `STDERR` if not compatible and quiet=False.
Parameters: