I'm writing a script which converts special characters to text.
How can I arrange it so my script takes a csv file as input and executes sed commands on it?
FILENAME= ls -ltr| grep *.csv
sed -i 's/\xc3\x83/A/g' FILENAME #Ã <br>
sed -i 's/\xc3\x80/A/g' FILENAME #À<br>
sed -i 's/\xc3\x81/A/g' FILENAME #Á<br>
sed -i 's/\xc3\x82/A/g' FILENAME #Â<br>
sed -i 's/\xc3\x85/A/g' FILENAME #Å<br>