mirror of
https://github.com/opnsense/src.git
synced 2026-04-20 21:59:20 -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}
|