qse/ase/test/awk/t20.awk

6 lines
73 B
Awk

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