forked from makersacademy/clmystery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
step1
20 lines (9 loc) · 1018 Bytes
/
step1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Reference: ./detective_handbook/step1.md
Now it's time to collect the clues! The officers on the scene are pretty meticulous, so they've written down EVERYTHING in their officer reports. Take a look at the 'mystery/crimescene' file. It's quite large so use the `less` command to view the contents of the file, one screen at a time.
############ Challenge ###############
How can you view a file in different directory without switching to that directory first? What is the difference between absolute paths and relative paths?
######################################
You need to search for lines in the file marked with the word 'CLUE'. Use the `grep` command to do this.
Once you've found all the clues it's time to save them to a separate file for future reference.
Use `touch` to create a file named 'clues.txt'. Use `>` to save the output of the `grep` command to the 'clues.txt' file.
That's the first step done! Open 'step1-git' to see how you can track your work using a version control system (git).