linux cd 명령은 현재 작업 디렉터리를 전환하는 데 사용됩니다. 구문 형식은 "cd [dirName]"입니다. 여기서 dirName 표현은 절대 경로 또는 상대 경로일 수 있습니다. 디렉터리 이름이 생략되면 다음으로 변경됩니다. 사용자의 홈 디렉터리, 즉 방금 로그인한 디렉터리입니다.
관련 권장사항: "Linux 비디오 튜토리얼"
Linux cd 명령은 현재 작업 디렉토리를 dirName(디렉토리 매개변수)으로 전환하는 데 사용됩니다.
dirName 표현은 절대 경로 또는 상대 경로일 수 있습니다. 디렉터리 이름을 생략하면 사용자의 홈 디렉터리(즉, 사용자가 방금 로그인한 디렉터리)로 변경됩니다.
또한 "~"는 홈 디렉터리를 의미하고 "."는 현재 디렉터리를 의미하며 ".."는 현재 디렉터리 위의 디렉터리를 의미합니다.
1. Linux cd 명령 구문
cd [dirName]
dirName: 전환할 대상 디렉터리입니다.
2. Linux cd 명령 예
테스트 디렉토리로 점프:
[root@/root/linuxdaxue.com]#cd testDir/ [root@/root/linuxdaxue.com/testDir]#ls file1 file2 file3
상위 디렉토리로 점프
[root@/root/linuxdaxue.com/testDir]#cd .. [root@/root/linuxdaxue.com]#ls testDir
상위 디렉토리로 점프
[root@/root/linuxdaxue.com/testDir]#cd ../../ [root@/root]#ls
사용자 홈 디렉토리로 점프
[root@/root/linuxdaxue.com/testDir]#ls file1 file2 file3 [root@/root/linuxdaxue.com/testDir]#cd ~/ [root@/root]#pwd /root
절대 사용 path
[root@/root]#cd /root/linuxdaxue.com/testDir [root@/root/linuxdaxue.com/testDir]#ls file1 file2 file3
환경 변수
[root@/root]#cd $TEST_PATH [root@/root/linuxdaxue.com/testDir]#ls file1 file2 file3
를 사용하여 마지막으로 사용한 디렉터리로 이동합니다.
[root@/root]#pwd /root [root@/root]#cd - /root/linuxdaxue.com/testDir [root@/root/linuxdaxue.com/testDir]#
cd 명령은 비교적 간단하며 주로 작업 디렉터리를 전환하는 데 사용됩니다. 모두가 숙달할 수 있기를 바랍니다.
더 많은 프로그래밍 관련 지식을 보려면 프로그래밍 소개를 방문하세요! !
위 내용은 리눅스 CD 명령을 사용하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!