Created
August 3, 2016 23:37
-
-
Save lgrz/07a3be4f4fdad58eb738d4d3dcb7282f to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env gawk -f | |
{ | |
split($0, arr) | |
for (i in arr) { | |
if (arr[i] ~ "@") { | |
gsub(/[<>]/, "", arr[i]) | |
print arr[i] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment