Skip to content

Instantly share code, notes, and snippets.

@Enelar
Created July 25, 2016 16:02
Show Gist options
  • Save Enelar/757f89b9400f7aee3dcff37a6d406d29 to your computer and use it in GitHub Desktop.
Save Enelar/757f89b9400f7aee3dcff37a6d406d29 to your computer and use it in GitHub Desktop.
Convert xlsx/xls to csv in directory recursive
find . -type f -iname "*.xlsx" -print0 | while IFS= read -r -d $'\0' line; do
echo "$line"
ssconvert -S "$line" "${line%.xlsx}.%s.csv"
# rm "$line"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment