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
qto quit less. - Navigation:
Spacefor next page,bfor previous page,/to search.
