Thursday, 2 September, 2021
[kevshaw@451]$ history
1 w
2 ls -l /u/gonczzs/
3 ls -l /u/
4 ls -l /u/blastdb/
5 ls -l /u/blastdb/ | less
6 ls -l /u/blastdb/ > file
7 ls
8 less file
9 cat file
10 cat file | less
11 history
12 ls -l /u/blastdb/
13 history
14 ls
15 ls /u/blastdb/
16 ls
17 rm file
18 ls
19 echo 'I am happy!'
20 for i in {1..5}; echo i; done
21 for $i in {1..5}; echo $i; done
22 for i in {1..5}; echo $i; done
23 for i in {1..5}; echo $i done
24 for i in {1..5}; echo i done
25 echo 'I am happy!'
26 echo 'I am happy!' > file
27 ls
28 cat file
29 echo 'I am sad :-(' > file
30 cat file
31 echo 'I am happy! I taught you something!' >> file
32 cat file
33 pwd
34 ls
35 less file
36 nano file
37 cat file
38 nano file
39 vi file
40 cd /u
41 ls
42 cd /
43 cd
44 cd /
45 cd ~
46 ls -a
47 cd ..
48 ls
49 cd
50 mkdir tmp
51 ls
52 cd tmp
53 ls
54 ls -a
55 cd .
56 echo 'Happy, Happy, Joy' > file
57 cd ..
58 rmdir tmp
59 rm -r tmp
60 ls
61 sh
62 csh
63 mkdir tmp
64 rmdir tmp
65 ls
66 rm bor
67 ls
68 wget https://yea4.us/451/data/bor
69 ls
70 cat bor
71 ed bor
72 grep Militia bor
73 grep security bor
74 grep sec* bor
75 grep sec bor
76 grep se[cd] bor
77 grep speedy bor
78 grep jury bor
79 grep "jury shall" bor
80 ls
81 cd /u
82 ls -l
83 ls g*
84 ls *e$
85 egrep *e$
86 cd
87 adventure
[kevshaw@451]$