awk -F"$DELIM" -v COL="$COL" -v k="$key" '{
key4 = $COL # get the correct column
gsub(/ /,"", key4) # remove spaces for comparison
if (key4 == k) print $0 # print original line untouched
}' "$MASTER"
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)