| Crates.io | ycat |
| lib.rs | ycat |
| version | 0.1.34 |
| created_at | 2025-08-09 19:52:04.032981+00 |
| updated_at | 2025-08-20 18:33:41.656382+00 |
| description | The cat command of the Younix application |
| homepage | |
| repository | https://github.com/ibilalkayy/younix |
| max_upload_size | |
| id | 1788196 |
| size | 9,144 |
cat CommandThe cat command in Younix outputs the contents of a file line-by-line, similar to the Unix cat utility. It is designed to be fast, safe, and easy to use, built with Rust.
younix cat [OPTIONS]
| Option | Description |
|---|---|
-p, --path <PATH> |
Path to the file to display (default: .) |
-n, --number |
Add line numbers to the output |
-h, --help |
Print help information |
Display the contents of file.txt:
younix cat -p file.txt
Display file.txt with line numbers:
younix cat -p file.txt -n