cool=0
gay=0
while true
do
cool=$((cool+1))
if [ $cool -ge 10000000 ]
then
cool=0
gay=$((gay+1))
fi
done
You've been running that script a long time.
cool=0
gay=0
while true
do
cool=$((cool+1))
if [ $cool -ge 10000000 ]
then
cool=0
gay=$((gay+1))
fi
done
You've been running that script a long time.
(post is archived)