Wednesday, April 6, 2011

Assignment 4.2 Bash Scripting Part 1

Part 1: Using Bash Shell

So, I was finally able to install cyquin after the upteenth time trying. I had to restart my computer, and when I did that it was able to cleanly install the program. I thought a video would be nicer in helping me understand navigating in bash. This is helpful for navigating basically around your computer using bash. Here is my history that I saved into a txt file on my desktop when I was finally able to navigate to it. It was a much different way then on a mac, like the example in class.


1 cd
2 cd..
3 cd ..
4 cd
5 pwd
6 cd .
7 pwd
8 cd ..
9 pwd
10 cd ..
11 cd /home/
12 cd /Desktop
13 ls
14 ls -la
15 cd /
16 ls
17 ls -la
18 ls -al home
19 cd /
20 pwd
21 cd ..
22 cd /home
23 ls -la
24 cd /
25 ls -la
26 cd ~
27 pwd
28 ls -la
29 pwd
30 cd ..
31 cd /usr
32 ls -la
33 cd ~
34 pwd
35 cd /
36 pwd
37 mkdir tmp
38 mkdir test_tmp
39 pwd
40 cd /test_tmp
41 ls -la
42 history
43 history > apr6_test.txt
44 cd /
45 pwd
46 ls -la
47 /cygdrive/C
48 cd /cydribe/C:
49 cd /cygdrive/C
50 ls -la
51 cd /
52 cd /home/Tess
53 pwd
54 cd /home/Tess/Desktop
55 cd /home/Tess
56 ls -la
57 cd /cygdrive/c
58 ls -la
59 cd /cygdrive/c/Documents\ and\ Settings
60 ls -la
61 cd /cydrive/c/Documents]
62 pwd
63 cd /cydrive/c/Documents\ and\ Settings/desktop
64 ls -la
65 Tess
66 cd Tess
67 ls -la
68 cd Desktop/
69 history > history_apr6.txt

No comments:

Post a Comment