Files
tldr/pages.fa/common/ln.md
Taha dlrb c2c05c1a29 ln: add Farsi translation (#12498)
* ln: add Farsi translation

---------

Co-authored-by: Fazle Arefin <fazlearefin@users.noreply.github.com>
2024-03-15 09:19:54 +05:30

17 lines
652 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ln
> این دستور برای ایجاد ارتباط(link) به فایل ها و پوشه ها(Directories) استفاده می شود.
> اطلاعات بیشتر: <https://www.gnu.org/software/coreutils/ln>.
- ایجاد یک ارتباط نمادین (symbolic link) به یک فایل یا پوشه:
`ln -s {{/path/to/file_or_directory}} {{path/to/symlink}}`
- جایگزینی یک ارتباط نمادین موجود، برای اشاره به یک فایل متفاوت:
`ln -sf {{/path/to/new_file}} {{path/to/symlink}}`
- ایجاد یک لینک سخت (hard link) به یک فایل:
`ln {{/path/to/file}} {{path/to/hardlink}}`