clmystery/hint7

7 lines
329 B
Plaintext
Raw Permalink Normal View History

2013-10-26 05:28:23 +02:00
In order to actually get information about vehicles that might match our description,
we need to get multiple lines AROUND each match. We can use the -A, -B, or -C option with grep:
grep -A 5 "L337" mystery/vehicles
2016-01-29 19:42:03 +01:00
This will match the license plates that contain "L337" and, for each match, show us the five lines AFTER it.