diff --git a/pages.it/common/babel.md b/pages.it/common/babel.md index 064319cae5..0aac2241c8 100644 --- a/pages.it/common/babel.md +++ b/pages.it/common/babel.md @@ -3,7 +3,7 @@ > Un transpiler che converte codice JavaScript da sintassi ES6/ES7 ad ES5. > Maggiori informazioni: . -- Transpila uno specifico file e stampa il risultato su stdout: +- Transpila uno specifico file e stampa il risultato su `stdout`: `babel {{percorso/al/file}}` diff --git a/pages.it/common/banner.md b/pages.it/common/banner.md index d4f4b005b2..5bd5bf771d 100644 --- a/pages.it/common/banner.md +++ b/pages.it/common/banner.md @@ -10,6 +10,6 @@ `banner -w {{50}} {{"Hello World"}}` -- Leggi testo da stdin: +- Leggi testo da `stdin`: `banner` diff --git a/pages.it/common/base32.md b/pages.it/common/base32.md index 1a98141141..56fca3b769 100644 --- a/pages.it/common/base32.md +++ b/pages.it/common/base32.md @@ -10,10 +10,10 @@ `base32 -d {{nome_file}}` -- Codifica da stdin: +- Codifica da `stdin`: `{{comando}} | base32` -- Decodifica da stdin: +- Decodifica da `stdin`: `{{comando}} | base32 -d` diff --git a/pages.it/common/base64.md b/pages.it/common/base64.md index daf37513b6..2a62322b1a 100644 --- a/pages.it/common/base64.md +++ b/pages.it/common/base64.md @@ -10,10 +10,10 @@ `base64 -d {{nome_file}}` -- Codifica da stdin: +- Codifica da `stdin`: `{{comando}} | base64` -- Decodifica da stdin: +- Decodifica da `stdin`: `{{comando}} | base64 -d` diff --git a/pages.it/common/cut.md b/pages.it/common/cut.md index 8f549f5298..ea8c5010f2 100644 --- a/pages.it/common/cut.md +++ b/pages.it/common/cut.md @@ -1,8 +1,8 @@ # cut -> Taglia dividendo in campi STDIN o file. +> Taglia dividendo in campi `stdin` o file. -- Estrai i primi 16 caratteri di ogni riga da STDIN: +- Estrai i primi 16 caratteri di ogni riga da `stdin`: `cut -c {{1-16}}` diff --git a/pages.zh/osx/yank.md b/pages.zh/osx/yank.md index 705163d90f..7f20bd551c 100644 --- a/pages.zh/osx/yank.md +++ b/pages.zh/osx/yank.md @@ -1,6 +1,6 @@ # yank -> 从 stdin 读取输入并显示一个选择界面,该界面允许选择一个字段并将其复制到剪贴板. +> 从 `stdin` 读取输入并显示一个选择界面,该界面允许选择一个字段并将其复制到剪贴板. - 使用默认分隔符 (\f, \n, \r, \s, \t): diff --git a/pages/common/b2sum.md b/pages/common/b2sum.md index d0d0e3406f..9b0520cb5d 100644 --- a/pages/common/b2sum.md +++ b/pages/common/b2sum.md @@ -15,6 +15,6 @@ `b2sum -c {{filename.b2}}` -- Calculate the BLAKE2 checksum from stdin: +- Calculate the BLAKE2 checksum from `stdin`: `{{somecommand}} | b2sum` diff --git a/pages/common/babel.md b/pages/common/babel.md index efafa49d83..e86bf5ca82 100644 --- a/pages/common/babel.md +++ b/pages/common/babel.md @@ -3,7 +3,7 @@ > A transpiler which converts code from JavaScript ES6/ES7 syntax to ES5 syntax. > More information: . -- Transpile a specified input file and output to stdout: +- Transpile a specified input file and output to `stdout`: `babel {{path/to/file}}` diff --git a/pages/common/banner.md b/pages/common/banner.md index 01b903fa6f..87877d2af9 100644 --- a/pages/common/banner.md +++ b/pages/common/banner.md @@ -10,6 +10,6 @@ `banner -w {{50}} {{"Hello World"}}` -- Read text from stdin: +- Read text from `stdin`: `banner` diff --git a/pages/common/base32.md b/pages/common/base32.md index 59c8434aec..049d2730bb 100644 --- a/pages/common/base32.md +++ b/pages/common/base32.md @@ -10,10 +10,10 @@ `base32 -d {{filename}}` -- Encode from stdin: +- Encode from `stdin`: `{{somecommand}} | base32` -- Decode from stdin: +- Decode from `stdin`: `{{somecommand}} | base32 -d` diff --git a/pages/common/base64.md b/pages/common/base64.md index fac5ed74c2..2d1d654fe9 100644 --- a/pages/common/base64.md +++ b/pages/common/base64.md @@ -10,10 +10,10 @@ `base64 -d {{filename}}` -- Encode from stdin: +- Encode from `stdin`: `{{somecommand}} | base64` -- Decode from stdin: +- Decode from `stdin`: `{{somecommand}} | base64 -d` diff --git a/pages/common/bash.md b/pages/common/bash.md index 9d899a9411..247b852579 100644 --- a/pages/common/bash.md +++ b/pages/common/bash.md @@ -24,7 +24,7 @@ `bash -e {{file.sh}}` -- Run commands from STDIN: +- Run commands from `stdin`: `bash -s` diff --git a/pages/common/clamscan.md b/pages/common/clamscan.md index e33daa4630..1d203e9e1d 100644 --- a/pages/common/clamscan.md +++ b/pages/common/clamscan.md @@ -11,7 +11,7 @@ `clamscan -r {{path/to/directory}}` -- Scan data from stdin: +- Scan data from `stdin`: `{{command}} | clamscan -` diff --git a/pages/common/comm.md b/pages/common/comm.md index e1c031d776..b7333e9377 100644 --- a/pages/common/comm.md +++ b/pages/common/comm.md @@ -10,7 +10,7 @@ `comm -12 {{file1}} {{file2}}` -- Print only lines common to both files, reading one file from stdin: +- Print only lines common to both files, reading one file from `stdin`: `cat {{file1}} | comm -12 - {{file2}}` diff --git a/pages/common/cut.md b/pages/common/cut.md index a2605507a2..b5a7256e92 100644 --- a/pages/common/cut.md +++ b/pages/common/cut.md @@ -1,8 +1,8 @@ # cut -> Cut out fields from STDIN or files. +> Cut out fields from `stdin` or files. -- Cut out the first sixteen characters of each line of STDIN: +- Cut out the first sixteen characters of each line of `stdin`: `cut -c {{1-16}}` diff --git a/pages/common/envsubst.md b/pages/common/envsubst.md index 9c3ada8093..c8d84accf9 100644 --- a/pages/common/envsubst.md +++ b/pages/common/envsubst.md @@ -3,11 +3,11 @@ > Substitutes shell format strings with environment variables in text. > Strings to be replaced should be in either `${var}` or `$var` format. -- Replace environment variables in stdin and output to stdout: +- Replace environment variables in stdin and output to `stdout`: `echo '{{$HOME}}' | envsubst` -- Replace environment variables in an input file and output to stdout: +- Replace environment variables in an input file and output to `stdout`: `envsubst < {{path/to/input}}` diff --git a/pages/common/factor.md b/pages/common/factor.md index 80e04fdeba..05d651ea9c 100644 --- a/pages/common/factor.md +++ b/pages/common/factor.md @@ -6,6 +6,6 @@ `factor {{number}}` -- Take the input from stdin if no argument is specified: +- Take the input from `stdin` if no argument is specified: `echo {{number}} | factor` diff --git a/pages/common/gibo.md b/pages/common/gibo.md index e6b45f5d01..0dd43f0ee5 100644 --- a/pages/common/gibo.md +++ b/pages/common/gibo.md @@ -7,7 +7,7 @@ `gibo list` -- Write a boilerplate to stdout: +- Write a boilerplate to `stdout`: `gibo dump {{boilerplate}}` diff --git a/pages/common/gist.md b/pages/common/gist.md index 996bff17d9..5378d71737 100644 --- a/pages/common/gist.md +++ b/pages/common/gist.md @@ -15,7 +15,7 @@ `gist -p -d {{"A meaningful description"}} {{file.txt}} ` -- Read contents from STDIN and create a gist from it: +- Read contents from `stdin` and create a gist from it: `{{echo "hello world"}} | gist` diff --git a/pages/common/git-check-ignore.md b/pages/common/git-check-ignore.md index dd90c41fff..351854c970 100644 --- a/pages/common/git-check-ignore.md +++ b/pages/common/git-check-ignore.md @@ -11,7 +11,7 @@ `git check-ignore {{path/to/file}} {{path/to/directory}}` -- Use pathnames, one per line, from stdin: +- Use pathnames, one per line, from `stdin`: `git check-ignore --stdin < {{path/to/file_list}}` diff --git a/pages/common/git-format-patch.md b/pages/common/git-format-patch.md index 5d29b47616..f0e59dfd73 100644 --- a/pages/common/git-format-patch.md +++ b/pages/common/git-format-patch.md @@ -8,7 +8,7 @@ `git format-patch {{origin}}` -- Write a .patch file for all the commits between 2 revisions to stdout: +- Write a .patch file for all the commits between 2 revisions to `stdout`: `git format-patch {{revision_1}}..{{revision_2}}` diff --git a/pages/common/gnomon.md b/pages/common/gnomon.md index a84756a67b..54d96d7711 100644 --- a/pages/common/gnomon.md +++ b/pages/common/gnomon.md @@ -3,7 +3,7 @@ > Utility to annotate console logging statements with timestamps and find slow processes. > More information: . -- Use UNIX (or DOS) pipes to pipe the stdout of any command through gnomon: +- Use UNIX (or DOS) pipes to pipe the `stdout` of any command through gnomon: `{{npm test}} | gnomon` diff --git a/pages/common/gpg.md b/pages/common/gpg.md index b631c945e4..b994a567c8 100644 --- a/pages/common/gpg.md +++ b/pages/common/gpg.md @@ -15,7 +15,7 @@ `gpg --symmetric {{doc.txt}}` -- Decrypt doc.txt.gpg (output to STDOUT): +- Decrypt doc.txt.gpg (output to `stdout`): `gpg --decrypt {{doc.txt.gpg}}` @@ -23,10 +23,10 @@ `gpg --import {{public.gpg}}` -- Export public key for alice@example.com (output to STDOUT): +- Export public key for alice@example.com (output to `stdout`): `gpg --export --armor {{alice@example.com}}` -- Export private key for alice@example.com (output to STDOUT): +- Export private key for alice@example.com (output to `stdout`): `gpg --export-secret-keys --armor {{alice@example.com}}` diff --git a/pages/common/help2man.md b/pages/common/help2man.md index 566aa9cae3..0c136c46a6 100644 --- a/pages/common/help2man.md +++ b/pages/common/help2man.md @@ -15,7 +15,7 @@ `help2man {{executable}} --section {{section}}` -- Output to a file instead of stdout: +- Output to a file instead of `stdout`: `help2man {{executable}} --output {{path/to/file}}` diff --git a/pages/common/http.md b/pages/common/http.md index 0801723037..e13c278139 100644 --- a/pages/common/http.md +++ b/pages/common/http.md @@ -27,6 +27,6 @@ `http -a {{username:password}} {{example.org}}` -- Specify raw request body via stdin: +- Specify raw request body via `stdin`: `cat {{data.txt}} | http PUT {{example.org}}` diff --git a/pages/common/iconv.md b/pages/common/iconv.md index 40baed855b..25a75e6415 100644 --- a/pages/common/iconv.md +++ b/pages/common/iconv.md @@ -2,7 +2,7 @@ > Converts text from one encoding to another. -- Convert file to a specific encoding, and print to stdout: +- Convert file to a specific encoding, and print to `stdout`: `iconv -f {{from_encoding}} -t {{to_encoding}} {{input_file}}` diff --git a/pages/common/jq.md b/pages/common/jq.md index 50c2ace0dc..36a84feedd 100644 --- a/pages/common/jq.md +++ b/pages/common/jq.md @@ -19,11 +19,11 @@ `jq .[0] {{file.json}}` -- Output the value of a given key of the first element in a JSON text from stdin: +- Output the value of a given key of the first element in a JSON text from `stdin`: `cat {{file.json}} | jq .[0].{{key_name}}` -- Output the value of a given key of each element in a JSON text from stdin: +- Output the value of a given key of each element in a JSON text from `stdin`: `cat {{file.json}} | jq 'map(.{{key_name}})'` diff --git a/pages/common/json5.md b/pages/common/json5.md index 5781882047..170f0fd506 100644 --- a/pages/common/json5.md +++ b/pages/common/json5.md @@ -3,11 +3,11 @@ > A command-line tool for converting JSON5 files to JSON. > More information: . -- Convert JSON5 stdin to JSON stdout: +- Convert JSON5 stdin to JSON `stdout`: `echo {{input}} | json5` -- Convert a JSON5 file to JSON and output to stdout: +- Convert a JSON5 file to JSON and output to `stdout`: `json5 {{path/to/input_file.json5}}` diff --git a/pages/common/kafkacat.md b/pages/common/kafkacat.md index b24c3932c5..f58bd8b28a 100644 --- a/pages/common/kafkacat.md +++ b/pages/common/kafkacat.md @@ -15,7 +15,7 @@ `kafkacat -G {{group_id}} {{topic}} -b {{brokers}}` -- Publish message by reading from stdin: +- Publish message by reading from `stdin`: ` echo {{message}} | kafkacat -P -t {{topic}} -b {{brokers}}` diff --git a/pages/common/lebab.md b/pages/common/lebab.md index 025347f2ce..9203985ca6 100644 --- a/pages/common/lebab.md +++ b/pages/common/lebab.md @@ -12,7 +12,7 @@ `lebab --transform {{transformation}}` -- Transpile a file to stdout: +- Transpile a file to `stdout`: `lebab {{path/to/input_file}}` diff --git a/pages/common/license.md b/pages/common/license.md index 4070320593..f09775586c 100644 --- a/pages/common/license.md +++ b/pages/common/license.md @@ -3,7 +3,7 @@ > Create license files for open-source projects. > More information: . -- Print a license to stdout, using the defaults (auto-detected author name, and current year): +- Print a license to `stdout`, using the defaults (auto-detected author name, and current year): `license {{license_name}}` diff --git a/pages/common/lz4.md b/pages/common/lz4.md index a8e450e46c..fe20a48128 100644 --- a/pages/common/lz4.md +++ b/pages/common/lz4.md @@ -11,7 +11,7 @@ `lz4 -d {{file.lz4}}` -- Decompress a file and write to stdout: +- Decompress a file and write to `stdout`: `lz4 -dc {{file.lz4}}` diff --git a/pages/common/monodevelop.md b/pages/common/monodevelop.md index 97ef9d523c..c841013f46 100644 --- a/pages/common/monodevelop.md +++ b/pages/common/monodevelop.md @@ -19,7 +19,7 @@ `monodevelop --new-window` -- Disable redirection of stdout and stderr to a log file: +- Disable redirection of `stdout` and stderr to a log file: `monodevelop --no-redirect` diff --git a/pages/common/parallel.md b/pages/common/parallel.md index 11f821ea54..b9aab9a96f 100644 --- a/pages/common/parallel.md +++ b/pages/common/parallel.md @@ -7,7 +7,7 @@ `parallel gzip ::: {{file1}} {{file2}} {{file3}}` -- Read arguments from stdin, run 4 jobs at once: +- Read arguments from `stdin`, run 4 jobs at once: `ls *.txt | parallel -j4 gzip` @@ -19,7 +19,7 @@ `{{args}} | parallel -X {{command}}` -- Break stdin into ~1M blocks, feed each block to stdin of new command: +- Break stdin into ~1M blocks, feed each block to `stdin` of new command: `cat {{big_file.txt}} | parallel --pipe --block 1M {{command}}` diff --git a/pages/common/phpmd.md b/pages/common/phpmd.md index b631f5bc89..524c6c74a0 100644 --- a/pages/common/phpmd.md +++ b/pages/common/phpmd.md @@ -23,7 +23,7 @@ `phpmd {{path/to/file_or_directory}} {{xml|text|html}} {{rulesets}} --exclude {{directory_patterns}}` -- Output the results to a file instead of stdout: +- Output the results to a file instead of `stdout`: `phpmd {{path/to/file_or_directory}} {{xml|text|html}} {{rulesets}} --reportfile {{path/to/report_file}}` diff --git a/pages/common/q.md b/pages/common/q.md index 3f9b3db4da..687757af0d 100644 --- a/pages/common/q.md +++ b/pages/common/q.md @@ -15,7 +15,7 @@ `q -d{{delimiter}} -H "SELECT * from {{path/to/file}}"` -- Read data from stdin; '-' in the query represents the data from stdin: +- Read data from stdin; '-' in the query represents the data from `stdin`: `{{output}} | q "select * from -"` diff --git a/pages/common/rev.md b/pages/common/rev.md index fac7ada714..0385bce587 100644 --- a/pages/common/rev.md +++ b/pages/common/rev.md @@ -6,6 +6,6 @@ `echo "hello" | rev` -- Reverse an entire file and print to stdout: +- Reverse an entire file and print to `stdout`: `rev {{file}}` diff --git a/pages/common/samtools.md b/pages/common/samtools.md index 5c229cd518..fc2291857f 100644 --- a/pages/common/samtools.md +++ b/pages/common/samtools.md @@ -7,7 +7,7 @@ `samtools view -S -b {{input.sam}} > {{output.bam}}` -- Take input from stdin (-) and print the SAM header and any reads overlapping a specific region to stdout: +- Take input from stdin (-) and print the SAM header and any reads overlapping a specific region to `stdout`: `{{other_command}} | samtools view -h - chromosome:start-end` diff --git a/pages/common/scrapy.md b/pages/common/scrapy.md index cd225b9b9e..834c036b93 100644 --- a/pages/common/scrapy.md +++ b/pages/common/scrapy.md @@ -19,7 +19,7 @@ `scrapy crawl {{spider_name}}` -- Fetch a webpage as scrapy sees it and print source in stdout: +- Fetch a webpage as scrapy sees it and print source in `stdout`: `scrapy fetch {{url}}` diff --git a/pages/common/seq.md b/pages/common/seq.md index 74eec36ff9..29482962d2 100644 --- a/pages/common/seq.md +++ b/pages/common/seq.md @@ -1,6 +1,6 @@ # seq -> Output a sequence of numbers to stdout. +> Output a sequence of numbers to `stdout`. - Sequence from 1 to 10: diff --git a/pages/common/sh.md b/pages/common/sh.md index 699823a3cd..9537d71146 100644 --- a/pages/common/sh.md +++ b/pages/common/sh.md @@ -15,6 +15,6 @@ `sh {{file.sh}}` -- Run commands from STDIN: +- Run commands from `stdin`: `sh -s` diff --git a/pages/common/sshpass.md b/pages/common/sshpass.md index a7de6110b7..998096afa2 100644 --- a/pages/common/sshpass.md +++ b/pages/common/sshpass.md @@ -1,9 +1,9 @@ # sshpass > An ssh password provider. -> It works by creating a TTY, feeding the password into it, and then redirecting stdin to the ssh session. +> It works by creating a TTY, feeding the password into it, and then redirecting `stdin` to the ssh session. -- Connect to a remote server using a password supplied on a file descriptor (in this case, stdin): +- Connect to a remote server using a password supplied on a file descriptor (in this case, `stdin`): `sshpass -d {{0}} ssh {{user}}@{{hostname}}` diff --git a/pages/common/supervisorctl.md b/pages/common/supervisorctl.md index 79a8f40d42..a42960008e 100644 --- a/pages/common/supervisorctl.md +++ b/pages/common/supervisorctl.md @@ -12,11 +12,11 @@ `supervisorctl {{start|stop|restart}} {{group_name}}:*` -- Show last 100 **bytes** of process stderr: +- Show last 100 **bytes** of process `stderr`: `supervisorctl tail -100 {{process_name}} stderr` -- Keep displaying stdout of a process: +- Keep displaying `stdout` of a process: `supervisorctl tail -f {{process_name}} stdout` diff --git a/pages/common/tldrl.md b/pages/common/tldrl.md index d4b365d246..b6ef4483a4 100644 --- a/pages/common/tldrl.md +++ b/pages/common/tldrl.md @@ -7,7 +7,7 @@ `tldrl {{pages_directory}}` -- Format a specific page to stdout: +- Format a specific page to `stdout`: `tldrl -f {{page.md}}` diff --git a/pages/common/unzip.md b/pages/common/unzip.md index d3ac12e1da..50fe0d8a8c 100644 --- a/pages/common/unzip.md +++ b/pages/common/unzip.md @@ -14,7 +14,7 @@ `unzip -l {{file.zip}}` -- Extract the contents of the file(s) to stdout alongside the extracted file names: +- Extract the contents of the file(s) to `stdout` alongside the extracted file names: `unzip -c {{file.zip}}` diff --git a/pages/common/while.md b/pages/common/while.md index 066290c91b..ff72770ba8 100644 --- a/pages/common/while.md +++ b/pages/common/while.md @@ -2,7 +2,7 @@ > Simple shell loop. -- Read stdin and perform an action on every line: +- Read `stdin` and perform an action on every line: `while read line; do echo "$line"; done` diff --git a/pages/common/xz.md b/pages/common/xz.md index f0cca6e5ee..aeea0ebc81 100644 --- a/pages/common/xz.md +++ b/pages/common/xz.md @@ -19,7 +19,7 @@ `xz -d --format=lzma {{file.lzma}}` -- Decompress a file and write to stdout: +- Decompress a file and write to `stdout`: `xz -dc {{file.xz}}` diff --git a/pages/common/zstd.md b/pages/common/zstd.md index a97d4facf0..90163298a3 100644 --- a/pages/common/zstd.md +++ b/pages/common/zstd.md @@ -11,7 +11,7 @@ `zstd -d {{file}}.zst` -- Decompress to stdout: +- Decompress to `stdout`: `zstd -dc {{file}}.zst` diff --git a/pages/linux/dbus-daemon.md b/pages/linux/dbus-daemon.md index d8aee28dbd..38eb1323b7 100644 --- a/pages/linux/dbus-daemon.md +++ b/pages/linux/dbus-daemon.md @@ -18,7 +18,7 @@ `dbus-daemon --address {{address}}` -- Output the process id to stdout: +- Output the process id to `stdout`: `dbus-daemon --print-pid` diff --git a/pages/linux/isoinfo.md b/pages/linux/isoinfo.md index 1d62fe9f9d..34f5a32049 100644 --- a/pages/linux/isoinfo.md +++ b/pages/linux/isoinfo.md @@ -6,7 +6,7 @@ `isoinfo -f -i {{path/to/image.iso}}` -- E[x]tract a specific file from an ISO image and send it out stdout: +- E[x]tract a specific file from an ISO image and send it out `stdout`: `isoinfo -i {{path/to/image.iso}} -x {{/PATH/TO/FILE/INSIDE/ISO.EXT}}` diff --git a/pages/linux/logger.md b/pages/linux/logger.md index c1fbb3debc..07505d34e5 100644 --- a/pages/linux/logger.md +++ b/pages/linux/logger.md @@ -6,7 +6,7 @@ `logger {{message}}` -- Take input from stdin and log to syslog: +- Take input from `stdin` and log to syslog: `echo {{log_entry}} | logger` diff --git a/pages/linux/lslocks.md b/pages/linux/lslocks.md index d1728daea9..983afca92a 100644 --- a/pages/linux/lslocks.md +++ b/pages/linux/lslocks.md @@ -18,6 +18,6 @@ `lslocks --pid {{PID}}` -- List locks with json output to stdout: +- List locks with json output to `stdout`: `lslocks --json` diff --git a/pages/linux/shasum.md b/pages/linux/shasum.md index 64e658ea8b..acc6feb863 100644 --- a/pages/linux/shasum.md +++ b/pages/linux/shasum.md @@ -18,6 +18,6 @@ `shasum --check {{list_file}}` -- Calculate the SHA1 checksum from stdin: +- Calculate the SHA1 checksum from `stdin`: `{{somecommand}} | shasum` diff --git a/pages/linux/yank.md b/pages/linux/yank.md index d44aed7adc..92d8331ea7 100644 --- a/pages/linux/yank.md +++ b/pages/linux/yank.md @@ -1,6 +1,6 @@ # yank -> Read input from stdin and display a selection interface that allows a field to be selected and copied to the clipboard. +> Read input from `stdin` and display a selection interface that allows a field to be selected and copied to the clipboard. - Yank using the default delimiters (\f, \n, \r, \s, \t): diff --git a/pages/osx/base64.md b/pages/osx/base64.md index bbf963491a..6296e69c3a 100644 --- a/pages/osx/base64.md +++ b/pages/osx/base64.md @@ -10,10 +10,10 @@ `base64 -D -i {{base64_file}}` -- Encode from stdin: +- Encode from `stdin`: `echo -n {{plain_text}} | base64` -- Decode from stdin: +- Decode from `stdin`: `echo -n {{base64_text}} | base64 -D` diff --git a/pages/osx/logger.md b/pages/osx/logger.md index d5bad38eb6..b7d1bc772c 100644 --- a/pages/osx/logger.md +++ b/pages/osx/logger.md @@ -6,7 +6,7 @@ `logger {{message}}` -- Take input from stdin and log to syslog: +- Take input from `stdin` and log to syslog: `echo {{log_entry}} | logger` diff --git a/pages/osx/shasum.md b/pages/osx/shasum.md index 64e658ea8b..acc6feb863 100644 --- a/pages/osx/shasum.md +++ b/pages/osx/shasum.md @@ -18,6 +18,6 @@ `shasum --check {{list_file}}` -- Calculate the SHA1 checksum from stdin: +- Calculate the SHA1 checksum from `stdin`: `{{somecommand}} | shasum` diff --git a/pages/osx/yank.md b/pages/osx/yank.md index d44aed7adc..92d8331ea7 100644 --- a/pages/osx/yank.md +++ b/pages/osx/yank.md @@ -1,6 +1,6 @@ # yank -> Read input from stdin and display a selection interface that allows a field to be selected and copied to the clipboard. +> Read input from `stdin` and display a selection interface that allows a field to be selected and copied to the clipboard. - Yank using the default delimiters (\f, \n, \r, \s, \t): diff --git a/pages/windows/more.md b/pages/windows/more.md index 2d1b019e4f..19569aeff4 100644 --- a/pages/windows/more.md +++ b/pages/windows/more.md @@ -1,8 +1,8 @@ # more -> Display paginated output from stdin or a file. +> Display paginated output from `stdin` or a file. -- Display paginated output from stdin: +- Display paginated output from `stdin`: `{{echo test}} | more` diff --git a/pages/windows/msg.md b/pages/windows/msg.md index 102270bc11..b4363d5a62 100644 --- a/pages/windows/msg.md +++ b/pages/windows/msg.md @@ -6,7 +6,7 @@ `msg {{username|session_name|session_id}} {{message}}` -- Send a message from stdin: +- Send a message from `stdin`: `echo "{{message}}" | msg {{username|session_name|session_id}}` diff --git a/pages/windows/rdpsign.md b/pages/windows/rdpsign.md index 06a01cca9e..071dddd975 100644 --- a/pages/windows/rdpsign.md +++ b/pages/windows/rdpsign.md @@ -18,6 +18,6 @@ `rdpsign {{path/to/file.rdp}} /v` -- Test the signing by displaying the output to stdout without updating the file: +- Test the signing by displaying the output to `stdout` without updating the file: `rdpsign {{path/to/file.rdp}} /l`