Thursday, 18 September, 2025
[kevshaw@451]$ history
1 cd pdb
2 ls
3 wget https://homepages.thm.de/~hg12640/2017-11-18.pdbsel
4 ls
5 rm *.1
6 ls
7 head 2017-11-18.pdbsel
8 head -20 2017-11-18.pdbsel
9 grep '^ ' 2017-11-18.pdbsel | less
10 grep '^ ' 2017-11-18.pdbsel | cut -c9-13 | less
11 grep '^ ' 2017-11-18.pdbsel | cut -c9-12 | less
12 grep '^ ' 2017-11-18.pdbsel | cut -c9-12 | head -5
13 ls
14 rm *.pdb
15 ls
16 grep '^ ' 2017-11-18.pdbsel | cut -c9-12 | head -5 | gfp -f
17 ls
18 ls *.pdb | wc -l
19 rm *.pdb
20 ls *.pdb
21 grep '^ ' 2017-11-18.pdbsel | cut -c9-12 | head -5 | gfp -f
22 ls
23 less 1R6J.pdb
24 less 5D8V.pdb
25 ls *.pdb
26 ls *.pdb | wc -l
27 rm *.pdb
28 cd
29 mkdir c
30 cd c
31 nano hello.c
32 gcc -o hello hello.c
33 ls
34 ls -l
35 ./hello
36 nano hello.c
37 gcc -S hello.c
38 ls
39 less hello.s
40 cd
[kevshaw@451]$