Date created: 2024-10-02
Resources and links
https://stackoverflow.com/questions/1068650/using-awk-to-remove-the-byte-order-mark
Go wild here
# Removing BOM from all csv files in current directory:
sed -i '1 s/^\xef\xbb\xbf//' *.csv
Date created: 2024-10-02
https://stackoverflow.com/questions/1068650/using-awk-to-remove-the-byte-order-mark
# Removing BOM from all csv files in current directory:
sed -i '1 s/^\xef\xbb\xbf//' *.csv