Skip to content

Instantly share code, notes, and snippets.

@coolaj86
Created January 26, 2011 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coolaj86/797179 to your computer and use it in GitHub Desktop.
Save coolaj86/797179 to your computer and use it in GitHub Desktop.
useful for testing "streaming" file writes and watching cpu usage in htop
#!/bin/bash
#
# `msleep` is available at https://github.com/coolaj86/msleep-commandline
SIZE=${1}
LOCATION=${2}
DATFILE=~/data.tmp
if [ ! -n "${SIZE}" ]
then
SIZE=512K
fi
if [ ! -n "${LOCATION}" ]
then
LOCATION=/dev/shm
fi
dd if=/dev/zero of=${DATFILE} bs=${SIZE} count=1
while true
do
msleep 128
cp ${DATFILE} ${LOCATION}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment