Skip to content

Instantly share code, notes, and snippets.

@lightsofapollo
Created February 25, 2015 19:57
Show Gist options
  • Save lightsofapollo/00f34bb1a1a61036d99a to your computer and use it in GitHub Desktop.
Save lightsofapollo/00f34bb1a1a61036d99a to your computer and use it in GitHub Desktop.
#! /bin/bash -e
times=$1
args=${@:2}
iter=0
while [ $iter -lt $times ];
do
eval $args
iter=$[$iter+1]
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment