Level 7
The password for the next level is stored in the file data.txt next to the word millionth
Solution
We use grep
to find word millionth
and this gives us password next to it.
Final Command:
$ grep millionth data.txt
Solution Screenshot: