The manual page tells you that -o is the OR operator. If you want case insensitivity, use iname instead of name.
find /path/to/folder -iname "*.bin" -o -iname "*.sh"
The manual page tells you that -o is the OR operator. If you want case insensitivity, use iname instead of name.
find /path/to/folder -iname "*.bin" -o -iname "*.sh"