Browse Source

pages*: put `stdin` in code ticks (#14281)

Sebastiaan Speck 4 months ago
parent
commit
240ca42dd1

+ 1 - 1
pages.de/common/curl.md

@@ -16,7 +16,7 @@
 
 `curl --fail --remote-name --location --continue-at - {{http://beispiel.de/datei}}`
 
-- Sende formular-codierte Daten (POST Anfragen des Typs `application/x-www-form-urlencoded`). Benutze `--data @dateiname` oder `--data @'-'`, um von STDIN zu lesen:
+- Sende formular-codierte Daten (POST Anfragen des Typs `application/x-www-form-urlencoded`). Benutze `--data @dateiname` oder `--data @'-'`, um von `stdin` zu lesen:
 
 `curl --data {{'name=karl-dieter'}} {{http://beispiel.de/formular}}`
 

+ 1 - 1
pages.fa/common/curl.md

@@ -16,7 +16,7 @@
 
 `curl --fail --remote-name --location --continue-at - {{http://example.com/filename}}`
 
-- ارسال داده(فرم) رمزگذاری شده (درخواست POST از نوع application/x-www-form-urlencoded). برای خواندن از STDIN، از --data @file_name یا --data @'-' استفاده کنید:
+- ارسال داده(فرم) رمزگذاری شده (درخواست POST از نوع application/x-www-form-urlencoded). برای خواندن از `stdin`، از --data @file_name یا --data @'-' استفاده کنید:
 
 `curl --data {{'name=bob'}} {{http://example.com/form}}`
 

+ 1 - 1
pages.fa/common/grep.md

@@ -31,6 +31,6 @@
 
 `grep {{-o|--only-matching}} "{{search_pattern}}" {{path/to/file}}`
 
-- ورودی استاندارد (stdin) رو برای الگوهایی که منطبق نیستند جستجو میکند :
+- ورودی استاندارد (`stdin`) رو برای الگوهایی که منطبق نیستند جستجو میکند :
 
 `cat {{path/to/file}} | grep {{-v|--invert-match}} "{{search_pattern}}"`

+ 1 - 1
pages.fr/common/curl.md

@@ -16,7 +16,7 @@
 
 `curl --fail --remote-name --location --continue-at - {{http://exemple.fr/nom_fichier}}`
 
-- Envoyer des données de formulaire encodées (requête POST de type `application/x-www-form-urlencoded`). Utiliser `--data @file_name` ou `--data @'-'` pour lire depuis STDIN :
+- Envoyer des données de formulaire encodées (requête POST de type `application/x-www-form-urlencoded`). Utiliser `--data @file_name` ou `--data @'-'` pour lire depuis `stdin` :
 
 `curl --data {{'nom=bob'}} {{http://exemple.fr/formulaire}}`
 

+ 1 - 1
pages.id/common/curl.md

@@ -16,7 +16,7 @@
 
 `curl --fail --remote-name --location --continue-at - {{http://contoh.com/filename}}`
 
-- Mengirim data form yang telah di encode (permintaan POST atau tipe data `application/x-www-form-urlencoded`). Gunakan `--data @file_name` atau `--data @'-'` untuk membaca dari STDIN:
+- Mengirim data form yang telah di encode (permintaan POST atau tipe data `application/x-www-form-urlencoded`). Gunakan `--data @file_name` atau `--data @'-'` untuk membaca dari `stdin`:
 
 `curl --data {{'name=bob'}} {{http://contoh.com/form}}`
 

+ 1 - 1
pages.it/common/tac.md

@@ -8,7 +8,7 @@
 
 `tac {{percorso/del/file1 percorso/del/file2 ...}}`
 
-- Visualizza 'stdin' in ordine inverso:
+- Visualizza `stdin` in ordine inverso:
 
 `{{cat percorso/del/file}} | tac`
 

+ 1 - 1
pages.ja/common/curl.md

@@ -16,7 +16,7 @@
 
 `curl --fail --remote-name --location --continue-at - {{http://example.com/filename}}`
 
-- フォームエンコードされたデータを送信する(`application/x-www-form-urlencoded`型のPOSTリクエスト)。STDIN(標準入力) から読み込むには、`--data @file_name` または `--data @'-'` を使用する:
+- フォームエンコードされたデータを送信する(`application/x-www-form-urlencoded`型のPOSTリクエスト)。`stdin`(標準入力) から読み込むには、`--data @file_name` または `--data @'-'` を使用する:
 
 `curl --data {{'name=bob'}} {{http://example.com/form}}`
 

+ 1 - 1
pages.ko/linux/qm-guest-exec.md

@@ -15,6 +15,6 @@
 
 `qm guest exec {{가상_머신_ID}} {{인수1 인수2 ...}} --timeout {{10}}`
 
-- 게스트 에이전트를 통해 특정 명령 실행 및 STDIN에서 EOF까지 입력을 게스트 에이전트로 전달:
+- 게스트 에이전트를 통해 특정 명령 실행 및 `stdin`에서 EOF까지 입력을 게스트 에이전트로 전달:
 
 `qm guest exec {{가상_머신_ID}} {{인수1 인수2 ...}} --pass-stdin 1`

+ 1 - 1
pages/common/crane-export.md

@@ -11,6 +11,6 @@
 
 `crane export {{image_name}} {{path/to/tarball}}`
 
-- Read image from stdin:
+- Read image from `stdin`:
 
 `crane export - {{path/to/filename}}`

+ 1 - 1
pages/common/npm-token.md

@@ -23,7 +23,7 @@
 
 `npm token create --publish`
 
-- Automatically configure an npm token in your global .npmrc file when you log in:
+- Automatically configure an npm token in your global `.npmrc` file when you log in:
 
 `npm login`
 

+ 1 - 1
pages/common/npm.md

@@ -4,7 +4,7 @@
 > Manage Node.js projects and their module dependencies.
 > More information: <https://www.npmjs.com>.
 
-- Create a `package.json` file with default values (omit --yes to do it interactively):
+- Create a `package.json` file with default values (omit `--yes` to do it interactively):
 
 `npm init {{-y|--yes}}`
 

+ 1 - 1
pages/common/tspin.md

@@ -15,6 +15,6 @@
 
 `tspin {{path/to/application.log}} --print`
 
-- Read from stdin and print to `stdout`:
+- Read from `stdin` and print to `stdout`:
 
 `echo "2021-01-01 12:00:00 [INFO] This is a log message" | tspin`

+ 1 - 1
pages/linux/qm-guest-exec.md

@@ -15,6 +15,6 @@
 
 `qm guest exec {{vm_id}} {{argument1 argument2...}} --timeout {{10}}`
 
-- Execute a specific command via a guest agent and forward input from STDIN until EOF to the guest agent:
+- Execute a specific command via a guest agent and forward input from `stdin` until EOF to the guest agent:
 
 `qm guest exec {{vm_id}} {{argument1 argument2 ...}} --pass-stdin 1`