Skip to content

Instantly share code, notes, and snippets.

@xanoni
Created August 7, 2021 03:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xanoni/0b4dcf56c4609299630f550990b6a452 to your computer and use it in GitHub Desktop.
Save xanoni/0b4dcf56c4609299630f550990b6a452 to your computer and use it in GitHub Desktop.
Create 1,000 random files
#! /usr/bin/env bash
for n in {1..1000}; do
dd if=/dev/urandom of="file-${1}-$( printf %03d "$n" ).bin" bs=1 count="$(( RANDOM + 1024 ))"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment