DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Awk To Pull First Field Of A Csv List And Concat Email Suffix
// description of your code here
awk -F, '{printf "%s@cypress.com\n",$1}'





