Thursday, 20 September, 2018
[kevshaw@451]$ history
1 clear
2 w
3 mkdir c-example
4 cd c-example/
5 vi hello.c
6 gcc -o hello hello.c
7 ls -al
8 ./hello
9 vi hello.c
10 gcc -o hello hello.c
11 ./hello
12 less hello.c
13 vi simple.c
14 less simple.c
15 gcc -S simple.c
16 less simple.s
17 vi notsosimple.c
18 less notsosimple.c
19 gcc -s notsosimple.c
20 diff simple.s notsosimple.s
21 ls
22 rm a.out
23 gcc -S notsosimple.c
24 diff simple.s notsosimple.s
25 cd
26 ls
27 mkdir molscript
28 cd molscript/
29 wget http://avatar.se/molscript/examples/ras_std.in
30 less ras_std.in
31 rm ras_std.in
32 gfp -fe 9rnt
33 ls
34 molauto
35 molauto 9rnt.ent
36 molauto 9rnt.ent > 9rnt.ms
37 less 9rnt.ms
38 less 9rnt.ent
39 less 9rnt.ms
40 molsort 9rnt.ms 9rnt.mol
41 molsort 9rnt.ms
42 molsort 9rnt.ms > 9rnt.mol
43 less 9rnt.
44 less 9rnt.mol
45 cd
[kevshaw@451]$