diff options
| author | mokha <mokha@cisco.com> | 2019-05-18 14:35:32 -0600 |
|---|---|---|
| committer | mokha <mokha@cisco.com> | 2019-05-18 14:35:32 -0600 |
| commit | 8a535baebd9183c711daf52f48dda1ac6cb1d996 (patch) | |
| tree | 64aca0e451fa05952a321310b02c44e506f54151 | |
| parent | 41f48e1640d5b3c38344ea2bbb531c3f0c02e3eb (diff) | |
complete chapter 7.11
| -rw-r--r-- | README.md | 13 | ||||
| -rw-r--r-- | exercises/chapter-7.11 | 16 |
2 files changed, 28 insertions, 1 deletions
@@ -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=[1;14r[23m[24m[0m[H[J[?25l[14;1H"memo.james" [New File][1;1H[93m 1 [0m[1m [0m[2;1H[30m~ [3;1H~ [4;1H~ [5;1H~ [6;1H~ [7;1H~ [8;1H~ [9;1H~ [10;1H~ [11;1H~ [12;1H~ [0m[13;1H[97m[48;5;242mmemo.james - [buffer:01][column:01][line:0000/0001][1;5H[34h[?25h[?25l[0m[14;228Hi[1;5H[14;228H [1;5H[14;1H[1m[30m[106m-- INSERT --[0m[14;14H[K[1;5H[34h[?25h[?25l[1mh[0m[13;221H[97m[48;5;242m2[10C1[1;6H[34h[?25h[?25l[0m[1me[0m[13;221H[97m[48;5;242m3[1;7H[34h[?25h[?25l[0m[1ml[0m[13;221H[97m[48;5;242m4[1;8H[34h[?25h[?25l[0m[1ml[0m[13;221H[97m[48;5;242m5[1;9H[34h[?25h[?25l[0m[1mo[0m[13;221H[97m[48;5;242m6[1;10H[34h[?25h[?25l[0m[1m.[0m[13;221H[97m[48;5;242m7[1;11H[34h[?25h[?25l[0m[1m w[0m[13;221H[97m[48;5;242m8[1;12H[34h[?25h[?25l[0m[1mo[0m[13;221H[97m[48;5;242m9[1;13H[34h[?25h[?25l[0m[1mr[0m[13;220H[97m[48;5;242m10[1;14H[34h[?25h[?25l[0m[1ml[0m[13;221H[97m[48;5;242m1[1;15H[34h[?25h[?25l[0m[1md[0m[13;221H[97m[48;5;242m2[1;16H[34h[?25h[0m[14;1H[K[1;15H[?25l[14;228H^[[1;15H[34h[?25h[?25l[14;228H [1;16H[13;221H[97m[48;5;242m1[1;15H[34h[?25h[?25l[0m[14;228H:[1;15H[14;228H[K[14;1H:[34h[?25hw[?25l[34h[?25hq[?25l[34h[?25ha[?25l[34h[?25h
[?25l"memo.james" [New] 1L, 12C written
+[?1l>[34h[?25h[?1049lbash-3.2$ ls ./memo.james
+./memo.james
+bash-3.2$ ls ~/memos/memo.james m[K[K
+/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 |
