I'm running this awk program :
awk -F: '{if($1=="waheed") {$2=1;print $0}}' /etc/passwd
and the output is:
mysql 1 118 129 MySQL Server,,, /nonexistent /bin/false
without the : separator, how to make it print the line in this case with the separator?
note : this happened after writing the expression $2=1.
