in reply to Re^2: Extracting text from pptx
in thread Extracting text from pptx

that looks like an Unix comand!
(ok, that IS an unix path to a program, you'll want to find the call for something like 7zip or the likes and replace  "/usr/bin/unzip/ it with that).
J -

Replies are listed 'Best First'.
Re^4: Extracting text from pptx
by Anonymous Monk on Mar 03, 2014 at 17:49 UTC

    Here's a one-liner for *nix

    unzip -lp <filename>.pptx ppt/slides/* ppt/notesSlides/* | perl -wne' +while ( /<a:t>(.*?)<\/a:t>.*?(?=(<a:t>|<\/p:txBody>))/g ) {print "$1" + and print "\n" if $2 eq "<\/p:txBody>"}'