summaryrefslogtreecommitdiff
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
parent41f48e1640d5b3c38344ea2bbb531c3f0c02e3eb (diff)
complete chapter 7.11
-rw-r--r--README.md13
-rw-r--r--exercises/chapter-7.1116
2 files changed, 28 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.
diff --git a/exercises/chapter-7.11 b/exercises/chapter-7.11
new file mode 100644
index 0000000..2aae7fb
--- /dev/null
+++ b/exercises/chapter-7.11
@@ -0,0 +1,16 @@
+Script started on Sat May 18 14:34:06 2019
+bash-3.2$ cd
+bash-3.2$ mkdir -p memos
+bash-3.2$ cd memos/
+bash-3.2$ vim memo.james
+[?1049h[?1h=[?25l"memo.james" [New File] 1  ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ memo.james - [buffer:01][column:01][line:0000/0001][?25h[?25li -- INSERT --[?25h[?25lh21[?25h[?25le3[?25h[?25ll4[?25h[?25ll5[?25h[?25lo6[?25h[?25l.7[?25h[?25l w8[?25h[?25lo9[?25h[?25lr10[?25h[?25ll1[?25h[?25ld2[?25h[?25l^[[?25h[?25l 1[?25h[?25l::[?25hw[?25l[?25hq[?25l[?25ha[?25l[?25h [?25l"memo.james" [New] 1L, 12C written
+[?1l>[?25h[?1049lbash-3.2$ ls ./memo.james
+./memo.james
+bash-3.2$ ls ~/memos/memo.james m
+/Users/mokha/memos/memo.james
+bash-3.2$ ls /Users/mokha/memos/memo.james
+/Users/mokha/memos/memo.james
+bash-3.2$ exit
+exit
+
+Script done on Sat May 18 14:34:42 2019