#!/bin/bash while true; do FILENAME=$(date +%s) openssl rand -out $(echo $FILENAME).bin -base64 $(( 2**30 * 3/4 )) curl -T $(echo $FILENAME).bin ftp://ftp.example.com --user user:password rm $(echo $FILENAME).bin done