I generated a script that iterates through several .csv files, converting relevant files to UTF-8:
#!/bin/bash cd /home/user/prod/ charset=\"text/plain; charset
You stop the glob from being expanded when you quote it in
for file in "$path/*.csv"; do
Instead, quote the expansion but not the glob:
for file in "$path"/*.csv; do