Linux Commands Helper
💬 Your AI-powered Linux assistant
less Command - View File Contents One Page at a Time
The less command allows you to view the contents of a file one page at a time. It is useful for reading large files in the terminal.
Syntax
less [options] filename
Examples
less /var/log/syslog
View the syslog file page by page.
Notes
- Use
q
to quit less. - Navigation:
Space
for next page,b
for previous page,/
to search.