Converting xls to semicolon delimited csv with soffice commandline
问题 I'm trying to convert xls files in a directory to csv format using soffice. soffice --headless --convert-to csv * It is giving comma separated version(obviously). Now I want to get semi-colon delimited csv. I thought of replacing commas with semi-colons using vim command. :%s/,/;/g But it's not correct, as it replaces commas which are kept intentionally in original content. It has to delimit while converting from xls to csv. How to get semi-colon delimited csv with soffice command line? 回答1: