echo "# Rusty Utils
A collection of Unix-like command-line utilities reimplemented in Rust, including tools like `echo`, `cat`, `ls`, `find`, and `grep`.
- `echo`: Repeats input text.
- `cat`: Concatenates and displays file contents.
- `ls`: Lists files and directories.
- `find`: Searches for files and directories.
- `grep`: Searches for patterns in files.
To build and run any of the tools:
-
Clone the repository: ```bash git clone https://github.com/BlockForge-Dev/rusty-utils.git ```
-
Navigate to the specific tool directory and run: ```bash cargo run -p -- ```
For example, to use the `cat` tool:
```bash cargo run -p cat -- ```
This project is licensed under the MIT License - see the LICENSE file for details." > README.md