目次
MacOSのディレクトリ構成
directory_structure
drive/ ←ルートディレクトリ
├── Applications/
├── Syetem/
└── Usr/
│ ├── shared/
│ └── personnel(ex. Jochun)/ ←ホームディレクトリ
│ ├── Desktop/
│ ├── Downloads/
│ ├── Documents/
│ ├── .config/
│ ├── .ssh/
│ ├── .zshrc/
│ └── .local/
│ │ ├── .bin
│ │ ├──
ホームディレクトリ
~
はホームディレクトリの印
引用
cdコマンド
移動
Desktopに移動したい場合
cd Desktop
1階層上に戻る
cd ..
2階層上に戻る
cd ../..
3階層上に戻る
cd ../../..
同階層の移動
Documentsに移動したい場合
cd ../Documents
ドライブ直下(ルートディレクトリ)に移動する
cd /
ホームディレクトリに移動する
cd ~