From 95e8df6c476c26c0a8c70e2679a22e30afedd1a0 Mon Sep 17 00:00:00 2001 From: tattoodgeek Date: Tue, 23 Oct 2018 15:37:14 -0500 Subject: [PATCH] added pwd command (#19907) --- guide/english/linux/getting-started/index.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/guide/english/linux/getting-started/index.md b/guide/english/linux/getting-started/index.md index b02146e156..c810cd78a4 100644 --- a/guide/english/linux/getting-started/index.md +++ b/guide/english/linux/getting-started/index.md @@ -36,3 +36,9 @@ ls (List) - This command list the content in the current directory. It can be al ls ``` Now we can see our directories in our home. + +pwd (Print Working Directory) - This command lists the directory you are currently in. + +```unix +pwd +```