Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I asked a question earlier that involved pulling large primes from a text file and putting them into another file. It was supposed to grab every prime up to and including the first prime after 2^32, and for some reason this script stopped working.

#!/bin/bash
n=4294967296
last=0
while read number
    do
    if [ $last -gt $n ]
    then break
    fi
    echo $number
last=$number
done < primes.txt > primes2.txt

It ended up looping through these 11 numbers:

4232004449  
4232004479  
4232004493  
4232004509  
4232004527  
4232004533  
4232004559  
4232004589  
4232004593  
4232004613  
004437

The original file didn't have 004437 in it, and my bash will handle numbers over 8999999999999999999

Does anybody have a clue as to why this happened?

64-bit Ubuntu 10.04, 16GB RAM, 8-cores @ 3.60 GHz
GNU bash, version 4.1.5(1)-release (x86_64-pc-linux-gnu)

Update:

After downloading and compiling the "fixed" bash provided by jfgagne and linking to it in my bash script, it errored out at the same exact spot. Using the significantly faster perl equivalent from my original prime question, I got some file sizes from ls -al:

        11  next_prime (just to make sure this was counting bytes accurately)
2147483659  primes2.txt
2147483670  one_too_many

2147483659 = 2^31 + 11

The size of the next prime (4232004631) is 11 bytes This holds all primes up to 4232004613. I also realized that the 004437 is coming from the end of the prime at the bottom of this error loop (4232004437). It seems like something is trying to advance, but stuck.

share|improve this question
2  
Awesome, I found my first bug in Linux. I'll implement the fix tomorrow. Thanks for the link. – Mister Melancholy Dec 6 '12 at 9:17
   
Actually, it is fixed in a newer version of bash, but not included in all distributions. – jfgagne Dec 6 '12 at 9:21
It appears that's not the issue. I downloaded the tar from git, compiled it on my desktop, linked to it in the bash script, and ran it again. I'll update my question in a moment. – Mister Melancholy Dec 7 '12 at 5:12
What filesystem type are you running this on? It looks like your file is stopped around 2GB of space. FAT32 has a 2GB file limit, so if you are running on a FAT based filesystem, it might not be bash at all, but that you just cannot write any more to the file. – iagreen Dec 20 '12 at 8:22
show 1 more comment

1 Answer

2^32 = 4 294 967 296 so you hit a 32 bit boundary.

You might want to go 64 bit.

share|improve this answer
I have 64-bit Ubuntu – Mister Melancholy Dec 24 '12 at 7:29
If the problem was that the numbers were signed, this would have happened at 2^31, not 2^32. The numbers erroring out would also be negative. If I had to guess, I'd say it was something more related to an index declared in bash's source that is not advancing because it's hit a limit, possibly because it was accidentally made signed. – Mister Melancholy Dec 24 '12 at 8:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.