LoginSignup
1
2

More than 5 years have passed since last update.

【cd】Linux コマンド

Last updated at Posted at 2015-04-06

cd

ディレクトリを移動する。

cd hoge
cd ./hoge
現在のディレクトリに存在するhogeディレクトリに移動する。

cd foo/var
現在のディレクトリに存在するfooディレクトリの中のvarディレクトリに移動する。

cd ../
現在のディレクトリのひとつ上のディレクトリに移動する。
../を増やすと更に上のディレクトリに移動する。

cd
cd ~
ホームディレクトリに移動する。

cd /
ルートディレクトリに移動する。

cd /home
ルートディレクトリのhomeディレクトリに移動する。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2