**Level Information**
> [!important] The password for the next level is stored in the file **data.txt** next to the word **millionth.**
>
>
>
> **Commands you may need to solve this level:**
>
> - [man](https://manpages.ubuntu.com/manpages/noble/man1/man.1.html), grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd
The password for the next level is stored in the file `data.txt` next to the word “millionth.”
To find and display the line containing the word “millionth,” you can use the `grep` command. Here’s how you can do it:
1. First, use the `cat` command to display the contents of `data.txt`.
2. Pipe (`|`) the output to the `grep` command to search for the word “millionth.”
The complete command is:
```Bash
cat data.txt | grep "millionth"
```
This command works as follows:
- `cat data.txt`: Displays the contents of `data.txt`.
- `|`: Pipes the output of `cat` to the next command.
- `grep "millionth"`: Searches through the piped output and displays only the line containing the word “millionth.”
This will output the line from `data.txt` that contains the password for the next level.
![[Level 07 - 08.png]]