1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 21:26:02 +02:00
tldr/pages.ko/common/ln.md
K.B.Dharun Krishna 898f711019
pages/*: update GNU coreutils links, sync translation pages (#15543)
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2025-01-18 18:45:33 +05:30

16 lines
577 B
Markdown

# ln
> 파일 및 디렉터리에 대한 링크를 생성합니다.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/ln-invocation.html>.
- 파일이나 디렉터리에 대한 심볼릭 링크 생성:
`ln -s {{/경로/대상/파일_또는_폴더}} {{경로/대상/심볼릭링크}}`
- 다른 파일을 가리키도록 기존 심볼릭 링크를 덮어쓰기:
`ln -sf {{/경로/대상/새로운_파일}} {{경로/대상/심볼릭링크}}`
- 파일에 대한 하드 링크 생성:
`ln {{/경로/대상/파일}} {{경로/대상/하드링크}}`