"Bin" is short for binary. It generally refers to the built applications (also know as binaries) that do something for a specific system. In SO "bin" can refer to a standard directory name where one put all the binary files for a program. This would be the executable itself and any dll's that the program uses.
bin is short for binary. It generally refers to the built applications (also know as binaries) that do something for a specific system. In SO bin can refer to a standard directory name where one put all the binary files for a program. This would be the executable itself and any dll's that the program uses.
The name goes back to the early days of the UNIX OS where /bin
, /usr/bin
or /usr/local/bin
were directories where executable binaries were stored. In Java, this name is used to designate where executable files are stored within the Java home directory.