# rust-utils **Repository Path**: mirrors_hjr3/rust-utils ## Basic Information - **Project Name**: rust-utils - **Description**: A Rust program that accepts new-line delimited text over stdin and randomly chooses one of the items or shuffles the entire list. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2025-11-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README rust-utils - Utility programs written in Rust. # Examples Random choice from input: ``` echo "one two three" | target/debug/rnd two ``` Shuffle entire list: ``` echo "one two three" | target/debug/shf two one three ```