in reply to Running an external GUI program
Or, if you look up the help/manual on the command that you are currently using (whatever that is), you might find out whether it accepts a "batch-mode" or "non-interactive" option as a command-line flag.# simple case: compress all pdf files in current directory: gzip *.pdf # recursive-search case: compress all files under some path: find some/path -name '*.pdf' -print0 | xargs -0 gzip
(The worst thing about GUI apps that perform basic operations is that they are not suitable for doing batch processing.)
|
|---|