*: always backquote stdin, stdout and stderr (#9584)

This commit is contained in:
pixel
2022-12-04 08:53:34 +01:00
committed by GitHub
parent 5f7fd20ee2
commit ab7a36fbe6
165 changed files with 207 additions and 207 deletions

View File

@@ -1,17 +1,17 @@
# keep-header
> Keep first line untouched by a command, passing it directly to stdout.
> Keep first line untouched by a command, passing it directly to `stdout`.
> More information: <https://github.com/eBay/tsv-utils#keep-header>.
- Sort a file and keep the first line at the top:
`keep-header {{path/to/file}} -- sort`
- Output first line directly to stdout, passing the remainder of the file through the specified command:
- Output first line directly to `stdout`, passing the remainder of the file through the specified command:
`keep-header {{path/to/file}} -- {{command}}`
- Read from stdin, sorting all except the first line:
- Read from `stdin`, sorting all except the first line:
`cat {{path/to/file}} | keep-header -- {{command}}`