create 10 random name files and write some random data

yes "mktemp -p . XXXXXXXXXX | awk ' { print tolower($0) }'" | head -n10 | bash

find . -type f -exec bash -c "cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1 > {}" \;

Leave a Reply

Your email address will not be published. Required fields are marked *