From 25aebacf4f0adddadc5389d3dce1a70043027ef6 Mon Sep 17 00:00:00 2001 From: jessicard Date: Sun, 14 Jun 2015 17:53:23 -0700 Subject: [PATCH 1/4] Create pwd chapter --- build.rb | 1 + en-US/src/pwd.md | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 en-US/src/pwd.md diff --git a/build.rb b/build.rb index d8004a1..2e0144b 100644 --- a/build.rb +++ b/build.rb @@ -1,4 +1,5 @@ chapter_name_order = ["introduction", + "pwd", "command-line-basics-part-two", "finding-and-grepping", "redirection-and-pipes", diff --git a/en-US/src/pwd.md b/en-US/src/pwd.md new file mode 100644 index 0000000..1a65c80 --- /dev/null +++ b/en-US/src/pwd.md @@ -0,0 +1,7 @@ +## pwd + +``` +pwd +``` + +This will tell you what current directory you're in. In fact, `pwd` is short for "print working directory", which is nerd speak for asking the computer to tell you where you are currently. After pressing enter, your computer will answer your question. From 4da06fdf886702a91998f6e77a723c94c2a581c7 Mon Sep 17 00:00:00 2001 From: jessicard Date: Sun, 14 Jun 2015 18:20:51 -0700 Subject: [PATCH 2/4] Minor edits --- en-US/src/pwd.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en-US/src/pwd.md b/en-US/src/pwd.md index 1a65c80..1d30e1c 100644 --- a/en-US/src/pwd.md +++ b/en-US/src/pwd.md @@ -1,7 +1,7 @@ -## pwd +# pwd ``` pwd ``` -This will tell you what current directory you're in. In fact, `pwd` is short for "print working directory", which is nerd speak for asking the computer to tell you where you are currently. After pressing enter, your computer will answer your question. +This will tell you what current directory you're in. In fact, `pwd` is short for "print working directory", which is asking the computer to tell you where you are currently. After pressing enter, your computer will answer your question. From f0d5476511d865d4ef38ec0764d9cc02f5a15086 Mon Sep 17 00:00:00 2001 From: jessicard Date: Sun, 14 Jun 2015 18:24:01 -0700 Subject: [PATCH 3/4] Minor edits --- en-US/src/pwd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en-US/src/pwd.md b/en-US/src/pwd.md index 1d30e1c..1a0b0de 100644 --- a/en-US/src/pwd.md +++ b/en-US/src/pwd.md @@ -4,4 +4,4 @@ pwd ``` -This will tell you what current directory you're in. In fact, `pwd` is short for "print working directory", which is asking the computer to tell you where you are currently. After pressing enter, your computer will answer your question. +This will tell you which directory you're currently in. In fact, `pwd` is short for "print working directory", which is asking the computer to tell you where you are currently. After pressing enter, your computer will answer your question. From 17ea24a1a397bbbcb0b631342b782677df96f51f Mon Sep 17 00:00:00 2001 From: jessicard Date: Sun, 14 Jun 2015 18:24:05 -0700 Subject: [PATCH 4/4] Add example --- en-US/src/pwd.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/en-US/src/pwd.md b/en-US/src/pwd.md index 1a0b0de..1083c78 100644 --- a/en-US/src/pwd.md +++ b/en-US/src/pwd.md @@ -5,3 +5,8 @@ pwd ``` This will tell you which directory you're currently in. In fact, `pwd` is short for "print working directory", which is asking the computer to tell you where you are currently. After pressing enter, your computer will answer your question. + +``` +$ pwd +/Users/jessicard/just-enough-unix-command-line +```