I have several lines that I want to alphabetize. For example, say I have a bunch of vim set
commands in a file:
set nowrap
set number
set expandtab
set hlsearch
set list
How would I alphabetize these 5 lines? The output would look like this:
set expandtab
set hlsearch
set list
set nowrap
set number