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
13 changed files with 13 additions and 13 deletions

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