Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Necessary for bootcamp
  • Loading branch information
dynisty18 committed Aug 14, 2020
2 parents 2ddb740 + bfbdcad commit 6078347
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions 1.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# day 3 bootcamp
1 change: 1 addition & 0 deletions CompTip.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Always make sure to comment your scripts!
1 change: 1 addition & 0 deletions TheBestTip.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Please add this code to your program
7 changes: 7 additions & 0 deletions aliases.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
The alias command is very useful to create shortcuts to commands. A common one is with the list command.

alias l='ls -lh'

The above command will create an alias for "l". Anytime you type l into the terminal it will be as if you typed ls -lh


1 change: 1 addition & 0 deletions jmy5455.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
file created by jmy5455
10 changes: 10 additions & 0 deletions loop-creating.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Creating Loops in the Shell #

This starts i on 0, ends on 10, and adds 1 to each itteration to the value of i. The body of the loop prints the value of i for each itteration.

```
for ((i=0; i=10; i+=1))
do
echo ${i}
done
```
3 changes: 3 additions & 0 deletions make-comments.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Remember to make comments on all lines of code, and be descriptive!

Your future self will thank you.
1 change: 1 addition & 0 deletions set-seed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Set a seed for reproducible randomness. In R use the function `set.seed()`.
2 changes: 2 additions & 0 deletions tips.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Tips for using version control

0 comments on commit 6078347

Please sign in to comment.