bin is executable extension for files in linux. some program distribute in this format. for executing a bin file from command line you can use following command:
first change the permission of file with this command:
$ chmod +x yourfile.bin
e.g
# chmod +x jdk-6u14-linux-i586.bin
then run file with this command:
$
./yourfile.bin
have a nice time.