awk -F~ -v k="$KEY" '{
key4=$4 # copy 4th field
gsub(/ /,"",key4) # remove spaces for comparison
if (key4 == k) print $0 # print original line untouched
}' ./CacheCplsOrder.dat
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)