The Man Page Viewer brings traditional UnixDocumentation Index
Fetch the complete documentation index at: https://docs.debian.com.mx/llms.txt
Use this file to discover all available pages before exploring further.
man pages to Time Capsule’s graphical environment. It provides formatted manual pages for 28 essential Unix commands, complete with syntax highlighting, clickable examples, and cross-referenced related commands.
Features
- 28 Manual Pages: Essential Unix commands
- Clickable Examples: Copy command examples with one click
- Cross-References: Navigate between related commands
- Search: Find text within man pages
- Keyboard Navigation: Vi-style shortcuts
- Index View: Browse all available commands
- Terminal Integration: Launch from
mancommand
Opening Man Viewer
Launch in several ways: From Panel: Click Man Viewer icon From Terminal Lab:The 28 Manual Pages
Man Viewer includes comprehensive documentation for:File Operations
ls- List directory contentscd- Change directorypwd- Print working directorycat- Concatenate and display filesmkdir- Make directoriesrmdir- Remove directoriesrm- Remove filescp- Copy filesmv- Move/rename filestouch- Create empty files
Text Processing
grep- Search text patternssed- Stream editorawk- Pattern scanning and processinghead- Output first part of filestail- Output last part of fileswc- Word, line, character countsort- Sort lines of textuniq- Report or omit repeated lines
System Information
ps- Process statustop- Display processesdf- Disk free spacedu- Disk usagefree- Memory usage
File Permissions
chmod- Change file permissionschown- Change file owner
Archiving
tar- Archive filesgzip- Compress files
Other
echo- Display a line of text
Man Page Format
Each manual page follows Unix man page conventions:Sections
- NAME: Command name and brief description
- SYNOPSIS: Command syntax with options
- DESCRIPTION: Detailed explanation of functionality
- OPTIONS: Available flags and arguments
- EXAMPLES: Practical usage examples (clickable)
- SEE ALSO: Related commands (clickable links)
Using Man Pages
Reading Pages
Scrolling:- Mouse wheel: Scroll content
- Page Up/Down: Jump by screen
- Arrow keys: Line-by-line scrolling
- Sections are highlighted in bold
- Options are indented
- Examples are numbered and clickable
Clickable Examples
Example commands can be copied:[1] or [2] to copy the command to clipboard.
Status bar confirms: “Copied: ls -la”
Cross-Referenced Commands
Related commands are clickable links:Index View
Pressi or launch without arguments to see all commands:
Keyboard Shortcuts
| Key | Action |
|---|---|
q | Quit man viewer |
h or ? | Show help |
/ | Search in current page |
i | Return to index |
← | Go back to previous page |
↑ / ↓ | Scroll content |
PgUp / PgDn | Page up/down |
Search Function
Press/ to search within the current man page:
- Enter search term
- Press
Enter - Matches are highlighted in yellow
- Status shows:
Found: "term"
History Navigation
Man Viewer maintains page history:- Press
←to go back - Navigate through previously viewed pages
- History persists within session
Help Screen
Pressh or ? to view help:
Terminal Lab Integration
From Terminal Lab (free mode): Open specific page:Example Man Page: ls
Complete example ofls manual page:
Common Commands Overview
Most Used Man Pages
File Viewing:ls- List filescat- Display file contentshead/tail- View file start/end
grep- Search for patternssed- Edit text streamsawk- Process text columns
ps- Running processestop- Live process monitordf- Disk spacefree- Memory usage
cp- Copy filesmv- Move/rename filesrm- Remove fileschmod- Change permissions
Tips and Tricks
Learning Unix Commands
Learning Unix Commands
Best way to learn:
- Read the SYNOPSIS for command syntax
- Check DESCRIPTION for detailed info
- Copy EXAMPLES to Terminal Lab
- Experiment in Terminal Lab free mode
- Follow SEE ALSO links for related commands
Quick Navigation
Quick Navigation
Copying Examples
Copying Examples
Use examples in Terminal Lab:
- Click example number (e.g.,
[2]) - Example copied to clipboard
- Switch to Terminal Lab
- Paste with
Ctrl+V - Modify as needed
- Press Enter to run
Searching Man Pages
Searching Man Pages
Find specific info quickly:
- Press
/to search - Type option name (e.g., “recursive”)
- Press Enter to highlight all matches
- Scroll to view each occurrence
Section Numbers
Section Numbers
Manual sections in Unix:
- Section 1: User commands (most common)
- Section 5: File formats
- Section 8: System administration
Source Code
Man Page Viewer is implemented in:/src/scripts/features/manviewer.ts: Core viewer logic (374 lines)/src/data/manpages.json: All 28 manual pages with full content- Clickable example system with clipboard integration
- Cross-reference navigation between pages
- Search highlighting with case-insensitive matching
- History tracking for back navigation
- Section syntax highlighting

