1openapp(1) GNUstep System Manual openapp(1)
2
3
4
6 openapp - launch applications from the command line
7
8
10 openapp [--find] [--debug [--gdb= debuger]] [ --library-combo=library-
11 combo ] application [arguments...]
12
13
15 The openapp command allows you to launch graphical GNUstep applications
16 from the command line.
17
18 application is the complete or relative name of the application program
19 with or without the .app extension, like Ink.app.
20
21 arguments are the arguments passed to the application.
22
23 openapp first checks whether the application is in the current working
24 directory. If not then searches the GNUstep domains' Applications
25 folders in the following order: User (i.e. ~/GNUstep/Applications),
26 Local, Network, System. First match wins.
27
28
30 --find application
31 will print out the full path of the application executable which
32 would be executed, without actually executing it. It will also
33 list all paths that are attempted.
34
35 --debug application
36 starts the application in the debugger. By default gdb, but this
37 can be changed with the --gdb= argument or through the GDB shell
38 variable.
39
40 --library-combo=library-combo
41 Starts the application with the specified library combo. This is
42 a rarely used option in a non-flattened setup. See the library-
43 combo(7) man-page for more information about the different
44 library combinations.
45
46 --help print above usage description.
47
48
50 Start Ink.app without additional parameters:
51
52 openapp Ink.app
53
54 Launch Ink.app and pass it the --debug argument:
55
56 openapp --debug Ink.app
57
58 To determine which executable is launched by openapp, type:
59
60 openapp --find Ink.app
61
62 The output of the above command might be something like:
63 /usr/GNUstep/Local/Applications/Ink.app/Ink
64
65
67 GNUSTEP_CONFIG_FILE
68 is used to determine where the GNUstep.sh configuration file is
69 located. If the variable is not set openapp tries to locate it
70 in the folder where openapp was started, then in the user
71 domain, and as a last resort in the system domain (or actually
72 the place you configured (--with-config-file=) during building).
73
74 GDB Sets the debugger to use when --debug is used.
75
76
78 debugapp(1), GNUstep(7), gopen(1), library-combo(7), opentool(1)
79
80
82 Work on openapp started October 1997.
83
84 openapp was originally written by Ovidiu Predescu <ovidiu@net-commu‐
85 nity.com> and is now maintained by Nicola Pero <nicola.pero@meta-inno‐
86 vation.com>
87
88
90 This manual page was first written July 2003 by Martin Brecher <mar‐
91 tin@mb-itconsulting.com>.
92
93 Updated with notes from Hubert Chathi <uhoreg@debian.org> and Dennis
94 Leeuw <dleeuw@made-it.com>, December 2007 by Dennis Leeuw.
95
96
97
98gnustep-make 12/12/2007 openapp(1)