| Crates.io | yview |
| lib.rs | yview |
| version | 0.1.34 |
| created_at | 2025-08-13 09:21:42.650923+00 |
| updated_at | 2025-08-20 18:40:05.302704+00 |
| description | The view command of the Younix application |
| homepage | |
| repository | https://github.com/ibilalkayy/younix |
| max_upload_size | |
| id | 1793466 |
| size | 8,693 |
view CommandThe view command in Younix allows interactive viewing of file content, similar to the Unix less utility. It supports pagination for easier navigation.
younix view [OPTIONS]
| Option | Description |
|---|---|
-f, --file <FILE> |
File to view |
-l, --lines <LINES> |
Number of lines per page (default: 20) |
-h, --help |
Print help information |
View file.txt interactively:
younix view -f file.txt
View file.txt with 10 lines per page:
younix view -f file.txt -l 10