Skip to content

Instantly share code, notes, and snippets.

@mohtth
Created February 28, 2019 16:06
Show Gist options
  • Save mohtth/f2c71e0bfa7e92cb83359dea6f8696ee to your computer and use it in GitHub Desktop.
Save mohtth/f2c71e0bfa7e92cb83359dea6f8696ee to your computer and use it in GitHub Desktop.
Enquête à Terminal City
1 cd ..
2 ls
3 nano hint1
4 cd mystery/
5 ls
6 head -n 20 people
7 grep "CLUE" crimescene
8 grep "Annabel" people
9 head -n 173 streets/Mattapan_Street | tail -n 1
10 cd interviews/
11 nano INTERVIEW #9437737
12 nano INTERVIEW-9437737
13 nano interview-9437737
14 ls
15 cd ..
16 ls
17 grep "Honda" vehicles
18 grep "Blue" vehicles
19 grep "L337" vehicles
20 grep -A 5 "L337" mystery/vehicles
21 grep -A 5 "L337" vehicles
22 cat Fitness_Galaxy AAA United_MileagePlus | grep "John Smith"
23 cd memberships/
24 cat Fitness_Galaxy AAA United_MileagePlus | grep "John Smith"
25 cat Fitness_Galaxy AAA United_MileagePlus | grep -c "John Smith"
26 cat Fitness_Galaxy AAA United_MileagePlus | grep "John Smith" | wc -l
27 ls
28 nano Fitness_galaxy
29 nano Fitness_Galaxy
30 cat AAA Delta_SkyMiles Terminal_City_Library Museum_of_Bash_History | grep -c "jacqui Maher"
31 cat AAA Delta_SkyMiles Terminal_City_Library Museum_of_Bash_History | grep -c "Jeremy Bowers"
32 cat AAA Delta_SkyMiles Terminal_City_Library Museum_of_Bash_History | grep -c "Joe Germ"
33 cd ..
34 grep "Jeremy Bowers" people
35 grep "Jacqui Maher" people
36 echo "Jeremy Bowers"
37 history >history.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment