Skip to content

Instantly share code, notes, and snippets.

@leandrogm
Last active July 30, 2020 13:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leandrogm/9f6b9cc8adda6efa2082cfb1f194063b to your computer and use it in GitHub Desktop.
Save leandrogm/9f6b9cc8adda6efa2082cfb1f194063b to your computer and use it in GitHub Desktop.
convert xls to ods or ods to xls commands
#!/bin/sh
#used this hack to make ods files generated from google docs smaller
sudo soffice --headless --convert-to ods *.xlsx;
sudo soffice --headless --convert-to xlsx *.ods;
sudo rm -rf *.ods
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment