Skip to content

Instantly share code, notes, and snippets.

@pacozaa
Created November 18, 2022 04:58
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 pacozaa/6d72a16c6addc1a6a1a4cfbc3566e4fb to your computer and use it in GitHub Desktop.
Save pacozaa/6d72a16c6addc1a6a1a4cfbc3566e4fb to your computer and use it in GitHub Desktop.
Filter the email list
#!/bin/bash
awk '{gsub("<","",$4); gsub(">","",$4); gsub(",","",$4);print $4}' emailList
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment