Blah
Posted: Wed Aug 04, 2010 3:12 pm
blah blah blah blah
repeat 1000 times.
Add some 151 repeat another million and a half times.
repeat 1000 times.
Add some 151 repeat another million and a half times.
Online Gaming Community
http://tribalinstinct.net/community/
http://tribalinstinct.net/community/viewtopic.php?f=5&t=2992
#!/bin/bash
for i in {1..1000..1}
do
echo "blah blah blah blah "
done
i = i + 151
for i in {1..1500000...1}
do
echo "blah blah blah blah "
done
pewterdragn wrote:#!/bin/bash
for i in {1..1000..1}
do
echo "blah blah blah blah "
done
i = i + 151
for i in {1..1500000...1}
do
echo "blah blah blah blah "
done
Is that what you said? I'd likely not recommend doing it that way, but I took you literally.