Skip to content

Instantly share code, notes, and snippets.

View myomyintaung1411's full-sized avatar
🎯
Focusing

steven myomyintaung1411

🎯
Focusing
View GitHub Profile
@schollz
schollz / files.sh
Last active July 30, 2023 00:19
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