mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* pages./: Automatically add alias pages Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * pages./: Automatically add links Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * Fix false positives from script Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
28 lines
586 B
Markdown
28 lines
586 B
Markdown
# cd
|
|
|
|
> 現在の作業ディレクトリを変更します。
|
|
> 詳しくはこちら: <https://manned.org/cd>
|
|
|
|
- 指定したディレクトリへ移動する:
|
|
|
|
`cd {{ディレクトリパス}}`
|
|
|
|
- カレントディレクトリの親ディレクトリへ移動する:
|
|
|
|
`cd ..`
|
|
|
|
- カレントユーザーのホームディレクトリへ移動する:
|
|
|
|
`cd`
|
|
|
|
- 指定したユーザーのホームディレクトリへ移動する:
|
|
|
|
`cd ~{{ユーザー名}}`
|
|
|
|
- 以前に選択されたディレクトリへ移動する:
|
|
|
|
`cd -`
|
|
|
|
- ルートディレクトリへ移動する:
|
|
|
|
`cd /`
|