Instrukcja warunkowa

Przykład 1

#!/usr/bin/awk -f
{
if($2==$3) {
} else {
print $0
}
}
Last modified 9mo ago