Skip to content

Instantly share code, notes, and snippets.

@obfusk
Last active June 19, 2023 12:41
Show Gist options
  • Save obfusk/9a92037010455a079ee488456b90421b to your computer and use it in GitHub Desktop.
Save obfusk/9a92037010455a079ee488456b90421b to your computer and use it in GitHub Desktop.
python one-liner to sort version codes
python3 -c $'import sys\nfor line in sorted(sys.stdin, key=lambda x: [int(n) for n in x[1:].split("-")[0].split(".")]): print(line, end="")'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment