2015-05-27 15:15 GMT+02:00 Gary Dale <garyd...@torfree.net>: > Put that into a script or a link to a script in your "Autostart" folder > (.kde/Autostart on my KDE system). > > To open all the files in a folder, just use a loop like this: > for f in *; do; libreoffice --calc -o $f; done > > We don't need no stinking features when we've got a real command line. :) >
Nitpicking, but for that you can just do: $ libreoffice *.ods The -o is only needed if you want to open template for edition, and --calc is redundant if the file are spreadsheet :) (also, this will be noticeably more efficient: your for loop start a new process for every file, which can lead to race condition and stuff). This is only if your shell is up to the task though. On windows, using wildcard like * doesn't work with libreoffice. You can still open multiple file with a single command by passing them one after another. But, on windows, you also have to pass the full soffice.exe path to the command line as it is not in the path :\ -- To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette List archive: http://listarchives.libreoffice.org/global/users/ All messages sent to this list will be publicly archived and cannot be deleted