Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shibme/randgen
RandGen is a simple CLI tool to generate random files of a given size.
https://github.com/shibme/randgen
blob-generator random random-file-generator random-generator secure-random-generator
Last synced: 1 day ago
JSON representation
RandGen is a simple CLI tool to generate random files of a given size.
- Host: GitHub
- URL: https://github.com/shibme/randgen
- Owner: shibme
- License: mit
- Created: 2024-07-16T20:22:08.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-04T14:18:12.000Z (2 months ago)
- Last Synced: 2024-11-06T20:18:40.249Z (9 days ago)
- Topics: blob-generator, random, random-file-generator, random-generator, secure-random-generator
- Language: Go
- Homepage: https://dev.shib.me/randgen/
- Size: 39.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RandGen
[![Go Reference](https://pkg.go.dev/badge/dev.shib.me/randgen.svg)](https://pkg.go.dev/dev.shib.me/randgen)
[![Go Report Card](https://goreportcard.com/badge/dev.shib.me/randgen)](https://goreportcard.com/report/dev.shib.me/randgen)
[![Release Status](https://github.com/shibme/randgen/actions/workflows/release.yaml/badge.svg)](https://github.com/shibme/randgen/actions/workflows/release.yaml)
[![License](https://img.shields.io/github/license/shibme/randgen)](https://github.com/shibme/randgen/blob/main/LICENSE)RandGen is a simple CLI tool to generate random data of a given size.
## CLI Usage
Download the latest binary from the [releases](https://github.com/shibme/randgen/releases/latest) page and add it to your path.### Homebrew
RandGen can be installed with brew using the following command on macOS
```zsh
brew install shibme/tap/randgen
```### Install Script
#### Install Latest Version
**With Shell (MacOs/Linux):**
```sh
curl -fsSL https://dev.shib.me/randgen/install.sh | sh
```
**With PowerShell (Windows):**
```powershell
irm https://dev.shib.me/randgen/install.ps1 | iex
```#### Install Specific Version
**With Shell (MacOs/Linux):**
```sh
curl -fsSL https://dev.shib.me/randgen/install.sh | sh -s v1.1.0
```
**With PowerShell (Windows):**
```powershell
$v="1.1.0"; irm https://dev.shib.me/randgen/install.ps1 | iex
```### Docker
You can also run RandGen without installing, using Docker:
```zsh
docker run --rm -v $PWD:/workspace -it ghcr.io/shibme/randgen help
```