mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -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}
|