awk -F: 'BEGIN{OFS=":"}{if(length($2) >2){$2="scrubbed"};print}' /etc/shadow
awk -F: '{if(length($2) >2){$2="scrubbed"};print $1,":",$2}' /etc/shadow