This lesson's interactive features are locked, please to keep using them
The more and less commands let you view the contents of a file, one page (or line) at a time.
As the adage goes, less is more.
In the context of these commands, less is literally more. The less command does everything that the more command does but also has more features. As a general rule, you should use less instead of more.
You would only use more if you're on a system that doesn't have less installed.
You found nothing suspicious in the first and last transactions of 2023, but you're not done yet! It's time to dig through the middle of the file as well.
less 2023.csv
Notice that you're now in an interactive mode and you've lost your shell prompt! That's because less has taken over your terminal window.
cat -n 2023.csv | less
You can use the spacebar to scroll down a page at a time, and you can go back up by pressing "b."
You can use "q" to exit less at any time.