Skip to content

Commit 368c611

Browse files
committed
started functions
1 parent bccd27c commit 368c611

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+989
-304
lines changed

03-Command-Line-Basics.Rmd

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Once you have opened up Terminal then you should see a window that
88
looks something like this:
99

10-
![](img/shell1.png)
10+
![](images/shell1.png)
1111

1212
What you're looking at is the bash shell! Your shell will surely look different
1313
than mine, but all bash shells have the same essential parts. As you can see in
@@ -17,7 +17,7 @@ there to let you know that the shell is ready for you to type in a command.
1717
Press `Enter` on your keyboard a few times to see what happens with the prompt.
1818
Your shell should now look like this:
1919

20-
![](img/shell2.png)
20+
![](images/shell2.png)
2121

2222
If you don't type anything after the prompt and you press enter then nothing
2323
happens and you get a new prompt under the old prompt. The white rectangle
@@ -87,17 +87,17 @@ directories and these terms are interchangeable. This directory hierarchy forms
8787
a tree, like the diagram below. You can use the command line to navigate these
8888
trees on your computer.
8989

90-
![](img/musictree1.png)
90+
![](images/musictree1.png)
9191

9292
As you can see in the image below, my Debussy directory is contained in my Music
9393
directory. This is the simplest case of how directories are structured.
9494

95-
![](img/musictree2.png)
95+
![](images/musictree2.png)
9696

9797
The directory structure on most computers is much more complicated, but the
9898
structure on your computer probably looks something like this:
9999

100-
![](img/bigtree1.png)
100+
![](images/bigtree1.png)
101101

102102
There are a few special directories that you should be aware of on your
103103
computer. The directory at the top of this tree is called the root directory.
@@ -112,7 +112,7 @@ directories from your root directory to the directory you're currently in. This
112112
sequence of directories is called a **path**. The diagram below illustrates the
113113
path from a hypothetical root directory to the home directory.
114114

115-
![](img/redtree.png)
115+
![](images/redtree.png)
116116

117117
This path can be written as `/Users/sean`.
118118

0 commit comments

Comments
 (0)