Files
qse/ase/test/awk/t20.awk
2006-07-31 15:59:43 +00:00

6 lines
73 B
Awk

"abc" != "def" {
print $0 ~ /abc/;
print $0 !~ /abc/;
print /abc/;
}