1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 08:59:45 +01:00

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

This commit is contained in:
Sebastiaan Speck 2024-10-20 00:02:10 +02:00 committed by GitHub
parent cfc3d172b8
commit 240ca42dd1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 13 additions and 13 deletions

View file

@ -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}}`

View file

@ -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}}`

View file

@ -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}}"`

View file

@ -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}}`

View file

@ -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}}`

View file

@ -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`

View file

@ -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}}`

View file

@ -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`

View file

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

View file

@ -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`

View file

@ -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}}`

View file

@ -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`

View file

@ -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`