multiple pages: trim trailing whitespace (#5213)

translation-badges
bl-ue 2021-01-31 16:16:00 -05:00 committed by GitHub
parent a5fe31bc47
commit d679ad1016
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 25 additions and 25 deletions

View File

@ -1,23 +1,23 @@
# cat
> چاپ و ترکیب کردن فایل ها.
- چاپ محتویات فایل بر روی صفحه نمایش:
`cat {{file}}`
- ادغام چند فایل با هم و ایجاد فایل جدید:
`cat {{file1}} {{file2}} > {{target_file}}`
- ادغام چند فایل با هم و اضافه کردن آن به فایل مقصد:
`cat {{file1}} {{file2}} >> {{target_file}}`
- شمارش تعداد خط های فایل:
`cat -n {{file}}`
- نمایش محتویات فایل بدون فضای خالی (نا مناسب برای چاپ):
`cat -v -t -e {{file}}`
# cat
> چاپ و ترکیب کردن فایل ها.
- چاپ محتویات فایل بر روی صفحه نمایش:
`cat {{file}}`
- ادغام چند فایل با هم و ایجاد فایل جدید:
`cat {{file1}} {{file2}} > {{target_file}}`
- ادغام چند فایل با هم و اضافه کردن آن به فایل مقصد:
`cat {{file1}} {{file2}} >> {{target_file}}`
- شمارش تعداد خط های فایل:
`cat -n {{file}}`
- نمایش محتویات فایل بدون فضای خالی (نا مناسب برای چاپ):
`cat -v -t -e {{file}}`

View File

@ -11,7 +11,7 @@
`docker start {{container}}`
- Inicia um container, atachando ao terminal os sinais stdout e stderr e outros sinais:
- Inicia um container, atachando ao terminal os sinais stdout e stderr e outros sinais:
`docker start --attach {{container}}`

View File

@ -1,4 +1,4 @@
# partx
# partx
> Parse a partition table and tell the kernel about it.
> More information: <https://man7.org/linux/man-pages/man8/partx.8.html>.