forked from tldr-pages/tldr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ls, cd, tty: add Persian translation (tldr-pages#5159)
Co-authored-by: Axel Navarro <[email protected]>
- Loading branch information
1 parent
7548a66
commit 3753db1
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# cd | ||
|
||
> تغییر دایرکتوری جاری. | ||
- تغییر مسیربه دایرکتوری مشخص شده: | ||
|
||
`cd {{path/to/directory}}` | ||
|
||
- تغییر مسیر به دایرکتوری Home کاربر فعلی: | ||
|
||
`cd` | ||
|
||
- تغییر مسیر به دایرکتوری بالاتر از مسیر جاری: | ||
|
||
`cd ..` | ||
|
||
- تغییر مسیر به دایرکتوری قبلی: | ||
|
||
`cd -` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# ls | ||
|
||
> نمایش محتویات دایرکتوری. | ||
- نمایش فایل های به صورت خطی: | ||
|
||
`ls -1` | ||
|
||
- نمایش کلیه فایل ها، شامل فایل های مخفی: | ||
|
||
`ls -a` | ||
|
||
- نمایش فایل ها، با این تفاوت که / به نام دایرکتوری ها اضافه می شود: | ||
|
||
`ls -F` | ||
|
||
- نمایش فایل ها به همراه مجوزها، مالک، اندازه و تاریخ تغییرات: | ||
|
||
`ls -la` | ||
|
||
- نمایش فایل ها به همراه مجوزها، مالک، اندازه و تاریخ تغییرات، اندازه ها به صورت قابل درک برای انسان: | ||
|
||
`ls -lh` | ||
|
||
- نمایش فایل ها به همراه مجوزها، مالک، اندازه و تاریخ تغییرات، مرتب شده با اندازه فایل به صورت نزولی: | ||
|
||
`ls -lS` | ||
|
||
- نمایش فایل ها به همراه مجوزها، مالک، اندازه و تاریخ تغییرات، مرتب شده با تاریخ تغییر فایل به صورت صعودی: | ||
|
||
`ls -ltr` |