summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authormokha <mokha@cisco.com>2019-05-18 14:35:32 -0600
committermokha <mokha@cisco.com>2019-05-18 14:35:32 -0600
commit8a535baebd9183c711daf52f48dda1ac6cb1d996 (patch)
tree64aca0e451fa05952a321310b02c44e506f54151 /README.md
parent41f48e1640d5b3c38344ea2bbb531c3f0c02e3eb (diff)
complete chapter 7.11
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/README.md b/README.md
index 57360ab..318bf59 100644
--- a/README.md
+++ b/README.md
@@ -60,7 +60,18 @@ ls -id $HOME
11. Create a directory, called memos, in your home directory. Go into this directory and create a file memo.james by using one of the editors discussed in Chapter 5. Give three pathnames for this file.
-
+```bash
+bash-3.2$ cd
+bash-3.2$ mkdir -p memos
+bash-3.2$ cd memos/
+bash-3.2$ vim memo.james
+bash-3.2$ ls ./memo.james
+./memo.james
+bash-3.2$ ls ~/memos/memo.james
+/Users/mokha/memos/memo.james
+bash-3.2$ ls /Users/mokha/memos/memo.james
+/Users/mokha/memos/memo.james
+```
2. Solve problems 7–17 at the end of Chapter 8.
3. Do problem 9 (What do the following commands do?) in Chapter 9.