Thursday, 5 September, 2024
[kevshaw@451]$ history
1 date
2 w
3 date
4 w
5 ls
6 ls -al
7 ls -l
8 dir
9 mkdir dir-name
10 ls
11 less /etc/bashrc
12 less .bashrc
13 ls
14 mv dir-name/ new
15 ls
16 mv new dir-old
17 ls
18 mv dir-old new
19 ls
20 cd new
21 ls
22 ls -la
23 cd
24 cd new
25 cd ..
26 cd new
27 cd ~
28 rmdir new
29 ls
30 rm file-name
31 ls
32 mkdir safety
33 cd safety/
34 touch file
35 ls
36 cd
37 rmdir safety/
38 rm -rf safety
39 ls
40 mkdir glob
41 cd glob
42 touch 1
43 touch 2
44 touch 3
45 touch 10
46 touch 100
47 ls
48 rm 1; rm 10; rm 100
49 ls
50 touch 100
51 touch 10
52 touch 1
53 ls
54 ls -l 1*
55 ls -l 10*
56 ls -l 1*0
57 rm 1*
58 ls
59 rm 2
60 rm 3
61 ls
62 touch 100
63 touch 10
64 touch 1
65 touch 2
66 touch 3
67 ls -l
68 rm *
69 ls -l
70 cd
71 rmdir glob/
72 ls
73 wget https://yea4.us/451/data/bor
74 ls -l
75 less bor
76 cat bor
77 ed bor
78 ls -l
79 grep not bor
80 grep bor
81 vi bor
82 nano bor
83 ls -l
84 nano
85 ls -l
86 nano typing
87 ls -l
88 wget https://yea4.us/451/data/streams
89 ls
90 ls -l
91 cat streams
92 chmod x streams
93 ls -l
94 ./bor
95 ./streams
96 ./streams > /dev/null
97 ./streams 1> /dev/null
98 ./streams 1> /dev/null 2> /dev/null
99 cat bor > my-bill-of-rights
100 ls -l
101 grep Arms bor
102 grep Arms bor > my-bill-of-rights
103 cat my-bill-of-rights
104 ls -l
105 grep not bor >> my-bill-of-rights
106 cat my-bill-of-rights
107 adventure
[kevshaw@451]$