forked from makersacademy/clmystery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
step6
23 lines (13 loc) · 1.04 KB
/
step6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Reference: ./detective_handbook/step6.md
Now you have more information to identify the perpetrator. Peek into the './mystery/vehicles' file. What information does it contain? Cross-reference it with your 'clues.txt' again - is there anything else you could search for in the vehicles record?
############ Challenge ###############
Now you need to search for multiple keywords in one file. How can you combine `grep` with flags and the pipe operator ('|') to filter the vehicle records for:
* car model
* car color
* license plate number
* suspect's height
######################################
Save the list of suspects into a new file called 'suspects.txt', commit and push to Github.
Make a pull request to the original 'makersacademy/clmystery' repository to report your progress to The Chief. Find out more about opening a pull request here: https://help.github.com/en/articles/creating-a-pull-request-from-a-fork
You're very happy with the progress of your investigation - you feel like you are close to identifying the culprit.
Move on to step 7.