From ef47ce96f26b94304a473b0fe1fff31a8701f842 Mon Sep 17 00:00:00 2001 From: Sanosuke Kato <8940110+sanopy@users.noreply.github.com> Date: Sun, 30 Oct 2022 21:08:09 +0900 Subject: [PATCH] cd: add Japanese translation (#9420) --- pages.ja/common/cd.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages.ja/common/cd.md diff --git a/pages.ja/common/cd.md b/pages.ja/common/cd.md new file mode 100644 index 0000000000..8076e4360d --- /dev/null +++ b/pages.ja/common/cd.md @@ -0,0 +1,28 @@ +# cd + +> 現在の作業ディレクトリを変更します。 +> 詳しくはこちら: . + +- 指定したディレクトリへ移動する: + +`cd {{ディレクトリパス}}` + +- カレントディレクトリの親ディレクトリへ移動する: + +`cd ..` + +- カレントユーザーのホームディレクトリへ移動する: + +`cd` + +- 指定したユーザーのホームディレクトリへ移動する: + +`cd ~{{ユーザー名}}` + +- 以前に選択されたディレクトリへ移動する: + +`cd -` + +- ルートディレクトリへ移動する: + +`cd /`