From 2154708115bd8c5855b94c9975d2ca58e1bc1b40 Mon Sep 17 00:00:00 2001 From: Tanuj Nagpal Date: Sun, 14 Oct 2018 02:24:05 +0530 Subject: [PATCH] Added function of typing only cd in terminal (#18702) cd will move you to the Home directory --- client/src/pages/guide/english/bash/bash-cd/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/guide/english/bash/bash-cd/index.md b/client/src/pages/guide/english/bash/bash-cd/index.md index 583d65b651..31f99183e7 100644 --- a/client/src/pages/guide/english/bash/bash-cd/index.md +++ b/client/src/pages/guide/english/bash/bash-cd/index.md @@ -12,6 +12,6 @@ There are a few really helpful arguments to aid this: - `..` can be used to move up one folder, use `cd ..`, and can be combined to move up multiple levels `../../my_folder` - `/` is the root of your system to reach core folders, such as `system`, `users`, etc. - `~` is the home directory, usually the path `/users/username`. Move back to folders referenced relative to this path by including it at the start of your path, for example `~/projects`. - +- Typing only `cd` will move to the home directory works same as `cd ~` ### More Information: * [Wikipedia](https://en.wikipedia.org/wiki/Cd_(command))