1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/realpath.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

24 lines
727 B
Markdown

# realpath
> 파일이나 디렉터리에 대한 절대 경로를 표시.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/realpath-invocation.html>.
- 파일이나 디렉터리에 대한 절대 경로 표시:
`realpath {{경로/대상/파일_또는_폴더}}`
- 모든 경로 구성 요소가 존재해야 함:
`realpath --canonicalize-existing {{경로/대상/파일_또는_폴더}}`
- 심볼릭 링크 전에 ".." 구성 요소 해결:
`realpath --logical {{경로/대상/파일_또는_폴더}}`
- 심볼릭 링크 확장 비활성화:
`realpath --no-symlinks {{경로/대상/파일_또는_폴더}}`
- 오류 메시지 억제:
`realpath --quiet {{경로/대상/파일_또는_폴더}}`