I'm writing a bash script using simple array operations like:
testarray=("First Name" "Second Name" "Third Name") ;
for i in "${testarray[@]}" ;
do
echo "$i" ;
done
What bash version number came with that original release? 10.4.11 shows me more or less 2.05b.0(1)-release, copyright 2002.
I tested it on my MacOS 10.4.11 and since I saw the 2.05b vrsion, I kinda freaked out since it's very old even for 10.4.11... 10.4.0 is likely sub 2.0. Is my script backward compatible with 10.4.0?
Someone here will probably throw it into a ppc virtual machine or something. It doesn't have to be exactly 10.4.0, but closer is better. I can't tell if Apple's documentation is correct but it has the exact version number in the online manpages :)