Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 7ec468a1a88b2e7695fe8ff28c5f32de > files > 71

bash-doc-4.2-49.1.mga4.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;
}