To display the last 10 lines of a file in Linux, you can use the `tail` command. The basic syntax is:
```bash
tail filename
```
This command will output the last 10 lines of the specified file by default. If you want to specify a file, just replace `filename` with the actual name of your file.
For example, to display the last 10 lines of a file called `example.txt`, you would use:
```bash
tail example.txt
```
If you want to display a