
23 Jun
2008
23 Jun
'08
7:16 a.m.
Mike Alsweiler wrote:
Hello all. I would like to change to output of the Search CSV format to be comma separated rather than tab separated. I am running version 2.2. I found the tip below in the mailing list. My quesiotn is (sorry, I'm a newbie!) if I change this code as suggested below, will I need to recompile the application?
It's just interpreted Perl code. There is nothing to compile. Instead of modifying the code you could also just replace tabs with commas using sed afterwards: # sed -i 's/\t/,/g' filename Nils Breunese.