Skip to content

Instantly share code, notes, and snippets.

@jagdevs
jagdevs / files.sh
Created September 6, 2022 04:16 — forked from schollz/files.sh
Go upload/recieve files via POST
#! /bin/bash
for n in {1..100}; do
dd if=/dev/urandom of=file$( printf %d "$n" ).bin bs=1 count=$(( RANDOM + 1024 ))
done