mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
3 lines
124 B
Awk
3 lines
124 B
Awk
# example program from alex@bofh.torun.pl
|
|
BEGIN { IGNORECASE=1 }
|
|
/\w+@([[:alnum:]]+\.)+[[:alnum:]]+[[:blank:]]+/ {print $0}
|