find and replace double quotes with single quotes in string code example
Example: Replace the second string in the double quotes with the first string in the double quotes
awk -v FS="," -v OFS="," '{$2=$1;print $0}' input.text
awk -v FS="," -v OFS="," '{$2=$1;print $0}' input.text