gerard82 wrote:
The only drawback is it contains a lot more than just the procedures.
If you just want the procedure names, execute the following expression in the console:
(let loop ((procs (cadr (gimp-procedural-db-query ".*" ".*" ".*" ".*" ".*" ".*" ".*" )))
(port (open-output-file "procedure-names.txt")) )
(if (null? procs)
(close-output-port port)
(begin
(display (car procs) port)
(newline port)
(loop (cdr procs) port) )))
gerard82 wrote:
I used "find" to find the file.
On GNU/Linux, the directory in which files are saved, unless you include the full path, will be the same as where GIMP is run from -- typically ~/ (i.e., $HOME/). This will be the same directory where images are saved when you first start GIMP, unless you navigate to another folder.