ln: add Korean translation (#10948)

This commit is contained in:
HoJeong Im
2023-10-20 21:50:35 +09:00
committed by GitHub
parent 43f92b23fc
commit 2824595aac

16
pages.ko/common/ln.md Normal file
View File

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