Skip to content

Instantly share code, notes, and snippets.

@tekk555
Last active December 20, 2015 22:28
Show Gist options
  • Save tekk555/6204862 to your computer and use it in GitHub Desktop.
Save tekk555/6204862 to your computer and use it in GitHub Desktop.
shell で for loop. ubuntu 12.04LTS
#!/bin/sh
for i in `seq 1 25`; do
dd if=/dev/urandom of=/var/temp/$i.dat count=180 bs=1k;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment