Skip to content

Instantly share code, notes, and snippets.

@outsinre
Created February 26, 2016 15:24
Show Gist options
  • Save outsinre/91ef1d93f7b1ab96c940 to your computer and use it in GitHub Desktop.
Save outsinre/91ef1d93f7b1ab96c940 to your computer and use it in GitHub Desktop.

I want to merge lines that share common prefix. Example:

a 1
a 2
a-b 3
a-b 4
a-b 5

After merging:

a 1 2
a-b 3 4 5

The prefix is a string with hypens

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment