Answers for "Replace the second string in the double quotes with the first string in the double quotes"

0

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
Posted by: Guest on October-12-2020

Code answers related to "Replace the second string in the double quotes with the first string in the double quotes"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language