Package ghidra
Class Ghidra
- java.lang.Object
-
- ghidra.Ghidra
-
public class Ghidra extends java.lang.Object
Ghidra entry point that forwards the command line arguments toGhidraLaunchable
.This class was introduced so Ghidra's application name can be set to "ghidra-Ghidra" on Linux, rather than "ghidra-GhidraLauncher".
- See Also:
- JDK-6528430
-
-
Constructor Summary
Constructors Constructor Description Ghidra()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
main(java.lang.String[] args)
Launches the givenGhidraLaunchable
specified in the first command line argument
-
-
-
Method Detail
-
main
public static void main(java.lang.String[] args) throws java.lang.Exception
Launches the givenGhidraLaunchable
specified in the first command line argument- Parameters:
args
- The first argument is the name of theGhidraLaunchable
to launch. The remaining args get passed through to the class'sGhidraLaunchable.launch(ghidra.GhidraApplicationLayout, java.lang.String[])
method.- Throws:
java.lang.Exception
- If there was a problem launching. See the exception's message for more details on what went wrong.
-
-