1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00

multiple pages: trim trailing whitespace (#5213)

This commit is contained in:
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>.