Created
November 18, 2022 04:58
-
-
Save pacozaa/6d72a16c6addc1a6a1a4cfbc3566e4fb to your computer and use it in GitHub Desktop.
Filter the email list
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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