While the steps posted above seem out of action at the moment, here's how you can build and replace your own. All you need is an internet connection and Xcode 3.1 or later to be installed. Just copy and paste the lines one at a time and you'll be all done. If at any point you get an error, stop and post the error. Failure to stop could lead to problems. Will work on 10.5.8 through 10.9.4.
Code:cd /tmp/ mkdir bash-fix cd bash-fix curl -k https://opensource.apple.com/tarballs/bash/bash-92.tar.gz | tar zxf - cd bash-92/bash-3.2 curl -k https://ftp.gnu.org/pub/gnu/bash/bash-3.2-patches/bash32-052 | patch -p0 cd .. xcodebuild sudo cp /bin/bash /bin/bash.old sudo cp /bin/sh /bin/sh.old build/Release/bash --version # GNU bash, version 3.2.52(1)-release build/Release/sh --version # GNU bash, version 3.2.52(1)-release sudo cp build/Release/bash /bin sudo cp build/Release/sh /bin sudo chmod a-x /bin/bash.old /bin/sh.old
Thank you for saving my PB G4.