Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 89d0e2c

Browse files
committed
cleaned up
1 parent d550508 commit 89d0e2c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Week1/MAKEME.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ We covered a bit of command line usage in the first class and got a program runn
2525

2626
1. Create a `.js` file that prints `Hello` when you run it from the command line. (Hint: `node` is the program that can run your JavaScript files.)
2727

28-
2. Write commands to do following:
29-
1. create a directory. Enter a directory. Create an empty file named blank.
28+
```
29+
Write commands to do following:
30+
1. create a directory. Enter a directory. Create an empty file named blank.
3031
2. Then write the content `"Hello"` five times to the file greetings.txt.
3132
Then copy the file greetings.txt and paste its contents into 1.txt, 2.txt, 3.txt, 4.txt and 5.txt.
3233
3. Then write the text "cat" to pets.txt
@@ -37,6 +38,7 @@ We covered a bit of command line usage in the first class and got a program runn
3738
Then append the text "pwd" to commands.txt
3839
5. Then find unique strings from these two files pets.txt and commands.txt
3940
and store the unique strings in lovelyCommands.txt
41+
```
4042

4143

4244
## Step 2: JavaScript

Week1/REVIEW.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# REVIEW JavaScript Basics week 1
22

33
## CLI
4+
```
45
pwd : present working directory
56
ls : List files in the directory
67
cd : change the directory
@@ -24,6 +25,7 @@ tail <file>: display the last 10 lines of file
2425
head -n <file> : display first n lines of file
2526
tail -n <file> : display last n lines of file
2627
man <COMMAND> : Display manual of the COMMAND
28+
```
2729

2830
## Variables
2931

0 commit comments

Comments
 (0)