to convert to SVG; and keep the architecture.
I'm running the following command :
find . -name '*.WMF' -exec sh -c 'inkscape ./"$0" --export-plain-svg=./"${0%.WMF}.svg"; echo "$0"' {} \;
It works fine, but it's working sequentially through all the files, and waiting for one to finish to start the other. Is there a way to thread the find command ?
GNU Parallel
Обсуждают сегодня