Skip to content

Instantly share code, notes, and snippets.

@tommykw
Created September 18, 2020 11:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tommykw/c296e7f5138192cdc1ad79c468663d88 to your computer and use it in GitHub Desktop.
Save tommykw/c296e7f5138192cdc1ad79c468663d88 to your computer and use it in GitHub Desktop.
Vertical number list -> 1,2,3,4,5
$ cat a
1
2
3
4
5
$ cat a | awk '{print $1 "," }'
1,
2,
3,
4,
5,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment