sed -i "s/\"/ \"/4" myFile.txt
The above command will replace the 4th occurrence of “ by “ in file “myFile.txt”, which is equivalent to putting a space in front of the 4th double quote.
sed -i "s/\"/ \"/4" myFile.txt
The above command will replace the 4th occurrence of “ by “ in file “myFile.txt”, which is equivalent to putting a space in front of the 4th double quote.