tldr/pages.fa/common/ln.md

17 lines
652 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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