Thursday, 7 September, 2023
[kevshaw@451]$ history
1 date
2 ls /etc
3 ls /etc/p*
4 ls /etc/pl*
5 ls /etc/p[al]*
6 ls
7 pwd
8 mkdir directory
9 ls
10 pwd
11 cd directory/
12 pwd
13 ls
14 ls -a
15 ls -a -l
16 touch file
17 ls
18 ls -l
19 rm file
20 ls -l
21 echo
22 ls
23 echo 'I am a line of text!'
24 echo 'I am a line of text!' > file
25 ls
26 ls -l
27 less file
28 cat file
29 echo 'I am the greatest!' > file
30 cat file
31 ls -l
32 echo 'Dance like a butterfly; sting like a bee' >> file
33 ls -l
34 cat file
35 wget https://yea4.us/451/data/streams
36 ls -l
37 cat streams
38 ls -l
39 ./streams
40 chmod x streams
41 ls -l
42 ./streams
43 cat streams
44 ./streams
45 ./streams >> file
46 cat file
47 ./streams 2> /dev/null
48 ./streams 2> /dev/null | less
49 echo < file
50 cat file | echo
51 cat file
52 echo file
53 echo < ./file
54 wget https://yea4.us/451/data/bor
55 ls -l
56 cat bor
57 cat bor | less
58 ed bor
59 grep Arms bor
60 grep Arms < bor
61 vi bor
62 nano bor
63 nano file
64 cat file
65 w
66 uptime
67 cal
68 cal 2023
69 cal 2024
70 ls
71 tar cvf out.tar bor file streams
72 ls
73 ls -l
74 gzip out.tar
75 ls -l
76 gzip -d out.tar.gz
77 ls -l
78 tar xvf out.tar
79 ls -l
80 rm out.tar
81 ls -al
82 pwd
83 cd ..
84 cd directory/
85 cd ~
86 cd directory/
87 cd
88 rm directory
89 rmdir directory/
90 rm -r directory/
91 ls
92 man rm
93 adventure
[kevshaw@451]$