Você pode fazer isso adicionando a string que deseja à ação de impressão, no seu código será como abaixo:
awk -F"," '{OFS=FS}{ if($6 == 120){$NF="N"; print $0}}' number.txt
Here, the
{OFS=FS}
to arrange the output file, theawk
code will check if the condition is true, if yes it will perform the action, first will change the last field$NF
to"N"
thenprint $0
that print the whole record.