I have a text file for acronyms. Each line starts with the acronym (in uppercase), usually up to 4 letters, and then "=" and then the explanation. For example,
...
EST=Eastern Standard Time
OVS=Open vSwitch
IPMI=Intelligent Platform Management Interface
...
IHV=Independent Hardware Vendor
ISV=Independent Software Vendor
...
I want to sort this text file, in bash, by ascending order according to the acronym, which is the first string (till "=") in each line. Any suggestions as to the best way to achieve this ?