https://github.com/yybit/rand
random string cli
https://github.com/yybit/rand
Last synced: 12 months ago
JSON representation
random string cli
- Host: GitHub
- URL: https://github.com/yybit/rand
- Owner: yybit
- License: apache-2.0
- Created: 2024-08-20T15:19:54.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-20T15:23:36.000Z (almost 2 years ago)
- Last Synced: 2025-02-16T20:46:43.497Z (over 1 year ago)
- Language: Rust
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rand - Generate random string
# Install
```
cargo install --git https://github.com/yybit/rand
```
# Usage
```
# Generate a string of length 8 containing uppercase letters, lowercase letters, numbers and symbol
rand 8 aA1@
# Generate a string of length 8 containing uppercase letters, lowercase letters and numbers, without symbol
rand 8
# Generate uuid4
rand uuid4
```