Skip to content

Instantly share code, notes, and snippets.

@zanculmarktum
Created June 18, 2020 09:43
Show Gist options
  • Save zanculmarktum/8d0bedbf59b05a3a552aefbbc9af3908 to your computer and use it in GitHub Desktop.
Save zanculmarktum/8d0bedbf59b05a3a552aefbbc9af3908 to your computer and use it in GitHub Desktop.
Check if all fields are the same
# Check if all fields are the same.
NF > 1 {
i=2 # nth field to starts with
for (i; i<=NF; i++) {
for (j=i+1; j<=NF; j++) {
if ($i != $j) {
print $0
break
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment