Its about 2500 CSV files who need to be replaced with and comma values and i need a script to select a range.
R000001.CSV....R000499 in 5 directories but filename needs to be changed with the for next loop.
I need some advice to make this script works.
BTW _1 its a mark for the processed files.
read -p "First Value: " f
read -p "Last Value: " l
read -p "Secuence $f to $l ... is correct press <enter> to continue or Ctrl+C to cancel"
for a in {$f..$l..1}
do
tr -d '\r' ';'< R*$f.CSV > R*$f_1.CSV
done