Sophie

Sophie

distrib > Mageia > 3 > x86_64 > by-pkgid > 03c48c16b5559c045c4b28738358ecbb > files > 71

bash-doc-4.2-53.1.mga3.x86_64.rpm

# From psamuels@jake.niar.twsu.edu (Peter Samuelson)
# posted to usenet, Message-ID: <6rtp8j$2a0$1@jake.niar.twsu.edu>

repeat ()
{
	local i max;     # note that you can use \$i in the command string
	max=$1; shift;

	i=1; while ((i <= max)); do
		eval "$@"; ((i = i + 1));
	done;
}