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
絶対パスを使用
[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
前回へ移動 directory
[root@/root]#pwd /root [root@/root]#cd - /root/linuxdaxue.com/testDir [root@/root/linuxdaxue.com/testDir]#
cd コマンドの使い方は比較的簡単で、主に作業ディレクトリを切り替えるために使用しますので、ぜひマスターしてください。
プログラミング関連の知識について詳しくは、プログラミング入門をご覧ください。 !
以上がLinuxのcdコマンドの使い方は?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。