#!/bin/bash
[ -z "$1" ] && echo "usage: $0 <host>" && exit
ssh $1 cat /dev/urandom | pv >/dev/null

