Skip to content

Instantly share code, notes, and snippets.

@gwpl
Last active January 12, 2019 20:41
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 gwpl/26fefe3a165304f3dedb21009506107f to your computer and use it in GitHub Desktop.
Save gwpl/26fefe3a165304f3dedb21009506107f to your computer and use it in GitHub Desktop.
repeat command in bash n times ( answer https://unix.stackexchange.com/a/494158/9689 )
#!/bin/bash
n=$1
shift 1
for ((x=0; x<$n; ++x)); do
"$@"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment