linux - Unoconv convert excel to csv with semicolon without quotes -


i'm doing simple command convert excel csv semicolon

 unoconv -f csv -e filteroptions="59,34,0,1" filex.xlsx 

but results appears quotes this

"name";"lastname";"age" 

how convert without quotes?

i solve this

     unoconv -f csv -e filteroptions="59,0,0,1"  filex.xlsx 

i use wiki

https://wiki.openoffice.org/wiki/documentation/devguide/spreadsheets/filter_options#token_8.2c_csv_import 

Comments