Am 22.02.2012 21:55, schrieb Jeff King: > On Wed, Feb 22, 2012 at 08:34:23PM +0100, Thomas Rast wrote: >> + printf "abcdefghijkl %s\n" $(seq 1 100) | git commit -F - && > > Seq is not portable. Thanks for pointing this out. > I usually use either > > perl -le "print for (1..100)" > > or just do: > > z16=zzzzzzzzzzzzzzzz > z256=$z16$z16$z16$z16$z16$z16$z16$z16 > z1024=$z256$z256$z256$z256$z256$z256$z256$z256 If a sequence of ASCII zeros is good enough, you can also do: printf %02134d 0 -- Hannes -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html