RSS/Atom feed Twitter
Site is read-only, email is disabled

script-fu batch file

This discussion is connected to the gimp-user-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

2 of 2 messages available
Toggle history

Please log in to manage your subscriptions.

script-fu batch file Pierre Habraken 25 Sep 09:14
  script-fu batch file Sven Neumann 25 Sep 09:27
Pierre Habraken
2008-09-25 09:14:15 UTC (over 16 years ago)

script-fu batch file

Hello,

I am a newbie to Gimp. I need to execute Gimp scripts from files which do not reside in ~/.gimp/scripts, for instance with the following invocation example: gimp -i -b $PROJECTDIR/my-script.scm -b 'gimp-quit 0) where $PROJECTDIR is the path to the script my-script.scm.

I understand that this is not possible for now. Does anyone know if there is any plan for a future release aiming to allow this way to execute batch commands ?

Pierre

Sven Neumann
2008-09-25 09:27:39 UTC (over 16 years ago)

script-fu batch file

Hi,

On Thu, 2008-09-25 at 09:14 +0200, Pierre Habraken wrote:

I am a newbie to Gimp.
I need to execute Gimp scripts from files which do not reside in ~/.gimp/scripts, for instance with the following invocation example: gimp -i -b $PROJECTDIR/my-script.scm -b 'gimp-quit 0) where $PROJECTDIR is the path to the script my-script.scm.

cat $PROJECTDIR/my-script.scm | gimp -i -b -

Sven