Skip to content

Instantly share code, notes, and snippets.

@bigornoo
Last active January 19, 2024 16:21
Show Gist options
  • Save bigornoo/8c7a617808a1df3d926659dab7e99d4b to your computer and use it in GitHub Desktop.
Save bigornoo/8c7a617808a1df3d926659dab7e99d4b to your computer and use it in GitHub Desktop.
gawk -v SEP=', ' '{ i=0; split($0, arr, SEP); len=asort(arr);
while ( ++i<=len ){ printf("%s%s", i>1?SEP:"", arr[i]) };
print ""}' infile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment