Hi my latest question I managed to find the solution
tail -1 file | cut -d= -f3 -f6 -f8 -f10 -f12 >> file.out
touch file.tmp
(for text in `cat file.out`;
do
echo -e -n " \b$text " >> file.tmp
done
cat file.tmp | tr [:blank:] , >> file.csv
Now this works and I got all my needed data into a comma seperated file.
I also tried the above received code from you Monk but I don't understand what it realy does, where does my .CSV file fits?
these file need to be dumped into a mysql db in a table..
thanks for your help