I have 3 files (name1.csv name2.csv name3.csv) Is it possible to merge them in one template.xls file which consists of 3 sheets (name1 name2 name 3) using bash script
Before I used for single convert:
for f in name1.csv; do ssconvert $f ${f%.csv}.xls; done
But now I need to keep it all in one file. And would be nice to configure the storage directory
Thanks in advance