Linux more Guide - ryzendew/Linux-Tips-and-Tricks GitHub Wiki
Linux more Guide
Complete beginner-friendly guide to more on Linux, covering Arch Linux, CachyOS, and other distributions including file viewing, text paging, and basic file navigation.
Table of Contents
Understanding more
What is more?
more is basic file pager.
Uses:
- View files: Display file contents
- Page through: Navigate files
- Simple viewing: Basic file viewer
Note: less is more advanced, but more is simpler.
more Basics
View File
Open file:
# View file
more file.txt
# Or pipe
command | more
Navigation
Move through:
- Space: Next page
- Enter: Next line
- q: Quit
more Navigation
Basic Commands
Navigation:
- Space: Next page
- b: Previous page (if supported)
- Enter: Next line
- q: Quit
- /pattern: Search (if supported)
more vs less
When to Use more
Use more when:
- Simple viewing: Basic file view
- Compatibility: Script compatibility
- Simple needs: Don't need advanced features
When to Use less
Use less when:
- Advanced features: Need search, etc.
- Better navigation: More control
- Modern tool: Recommended tool
Troubleshooting
more Not Found
Check installation:
# Check more
which more
# Usually in util-linux
# Install if missing
sudo pacman -S util-linux
Summary
This guide covered more usage, file viewing, and basic navigation for Arch Linux, CachyOS, and other distributions.
Next Steps
- less Guide - Advanced pager
- head and tail Guide - File viewing
- more Documentation:
man more
This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.