Skip to content

Instantly share code, notes, and snippets.

@dionyziz
Created December 25, 2013 06:39
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 dionyziz/8120722 to your computer and use it in GitHub Desktop.
Save dionyziz/8120722 to your computer and use it in GitHub Desktop.
dionyziz@erdos ~ % time ./repeat.sh 0000000000000000000000
./repeat.sh 0000000000000000000000 67.14s user 7.40s system 98% cpu 1:15.31 total
dionyziz@erdos ~ % time ./repeat.sh 1000000000000000000000
./repeat.sh 1000000000000000000000 67.31s user 7.30s system 98% cpu 1:15.38 total
dionyziz@erdos ~ % cat repeat.sh
#!/bin/bash
for i in `seq 1 1000`; do
php test.php $1 >/dev/null
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment