Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pages/common/atool.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

`atool {{[-X|--extract-to]}} {{path/to/output_directory}} {{archive.rar}}`

- Display a specific file's content from an archive to standard output (like `cat`):
- Display a specific file's content from an archive to `stdout` (like `cat`):

`atool {{[-c|--cat]}} {{archive.tar}} {{path/to/file_in_archive.txt}}`

Expand Down
2 changes: 1 addition & 1 deletion pages/common/elasticsearch-keystore.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

`elasticsearch-keystore add {{setting_name}}`

- Add a setting from standard input:
- Add a setting from `stdin`:

`echo "{{setting_value}}" | elasticsearch-keystore add --stdin {{setting_name}}`

Expand Down
2 changes: 1 addition & 1 deletion pages/common/kubectl-cluster-info.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

`kubectl cluster-info`

- Dump current cluster state to standard output (for debugging):
- Dump current cluster state to `stdout` (for debugging):

`kubectl cluster-info dump`

Expand Down
2 changes: 1 addition & 1 deletion pages/common/kubectl-proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

`kubectl proxy {{[-p|--port]}} {{port}} {{[-w|--www]}} {{path/to/static_dir}}`

- Run a proxy on a random local port, printing the chosen port to stdout:
- Run a proxy on a random local port, printing the chosen port to `stdout`:

`kubectl proxy {{[-p|--port]}} 0`

Expand Down
4 changes: 2 additions & 2 deletions pages/common/llvm-mc.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@

`llvm-mc -o {{path/to/output.s}} {{path/to/input.bc}}`

- Assemble assembly code from standard input stream and show encoding to standard output stream:
- Assemble assembly code from `stdin` and show encoding to `stdout`:

`echo "{{addl %eax, %ebx}}" | llvm-mc -show-encoding -show-inst`

- Disassemble machine code from standard input stream for specified triple:
- Disassemble machine code from `stdin` for specified triple:

`echo "{{0xCD 0x21}}" | llvm-mc --disassemble -triple={{target_name}}`
2 changes: 1 addition & 1 deletion pages/common/pkl.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

`pkl eval {{module.pkl}}`

- Run as a server that communicates over standard input/output:
- Run as a server that communicates over `stdin` and `stdout`:

`pkl server`

Expand Down
2 changes: 1 addition & 1 deletion pages/common/python-m-json.tool.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@

`python -m json.tool {{path/to/file.json}}`

- Validate and pretty-print JSON from standard input:
- Validate and pretty-print JSON from `stdin`:

`echo '{{{"key": "value"}}}' | python -m json.tool`
2 changes: 1 addition & 1 deletion pages/common/socat.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

`sudo socat - TCP-LISTEN:8080,fork`

- Listen on a port using SSL and print to STDOUT:
- Listen on a port using SSL and print to `stdout`:

`sudo socat OPENSSL-LISTEN:4433,reuseaddr,cert=./cert.pem,cafile=./ca.cert.pem,key=./key.pem,verify=0 STDOUT`

Expand Down
2 changes: 1 addition & 1 deletion pages/common/st.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

`st {{path/to/file}}`

- Print statistics from standard input:
- Print statistics from `stdin`:

`cat {{path/to/file}} | st`

Expand Down
2 changes: 1 addition & 1 deletion pages/linux/aa-decode.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

`sudo aa-decode {{logfile}}`

- Decode logs from standard input (e.g., redirected file):
- Decode logs from `stdin` (e.g., redirected file):

`sudo aa-decode - < {{logfile}}`

Expand Down
2 changes: 1 addition & 1 deletion pages/linux/patool.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

`patool list {{path/to/archive}}`

- Compare the contents of two archives and display the differences in the standard output:
- Compare the contents of two archives and display the differences in `stdout`:

`patool diff {{path/to/archive1}} {{path/to/archive2}}`

Expand Down
2 changes: 1 addition & 1 deletion pages/osx/rargs.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# rargs

> Execute a command for each line of standard input.
> Execute a command for each line of `stdin`.
> Like `xargs`, but with pattern matching support.
> More information: <https://github.com/lotabout/rargs>.

Expand Down