awk '{print $0}' file
~匹配正則 !~不匹配正則
|| && ! 或且非
|| && !
awk '{if($2!~/Rudy/) print $0}' content
awk '{if($1=="001" && $2~/^Ru/) print $0}' content