Page 1 of 1

Blah

Posted: Wed Aug 04, 2010 3:12 pm
by Porkinator
blah blah blah blah
repeat 1000 times.
Add some 151 repeat another million and a half times.

Re: Blah

Posted: Thu Aug 05, 2010 9:12 pm
by pewterdragn
#!/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.

:)

Re: Blah

Posted: Sat Aug 07, 2010 8:49 pm
by law.of.averages
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.

:)


geeks, ftw