반응형
relative path, absolute path (상대경로, 절대경로)
If the path starts with /
, it is an absolute path; otherwise it is a relative path.
cd /home/linuxer1/12345 -- go to /home/linuxer1/12345
cd 12345 -- go to directory 12345 in the current directory
if the current location is /home/linuxer1,
go to /home/linuxer1/12345
if the current location is /bin
go to /bin/12345
If the destination directory does not exist, the system issues an error.
반응형
'Development > Linux' 카테고리의 다른 글
[Linux] VI 기본 사용법 및 명령어 정리 (0) | 2022.04.17 |
---|---|
[Linux] Command Classification (명령어 분류) (0) | 2022.04.17 |
[Linux] 파일 트리 (file tree) (0) | 2022.04.17 |
[Linux] special symbols (0) | 2022.04.17 |
[Linux] 기본 명령어 모음 (A-Z 순) (0) | 2022.04.15 |