So I have the following script working as a daily workaround until the dev people fix:
#!/bin/sh
sed -i 's/,/;/g' /file_path/filename_date.csv
sed -i 's/NAME;NAME/NAME,NAME/g' /file_path/filename_date.csv
It works but when I look at it I think something is missing or isn't elegant. Maybe is my way of thinking being so much straight forward.
What is your opinion?