ghidra-version-manager 0.7.2

Ghidra Version Manager
# GVM
Ghidra Version Manager is a utility to manage and update your Ghidra versions and extensions

Supports Linux, macOS and Windows

## Installing
### Stable Version
```shell
cargo install ghidra-version-manager
```
### Latest Version
```shell
cargo install --git https://github.com/CUB3D/ghidra-version-manager
```

This will download and extract the selected version. On linux it will create a `.desktop` entry as well.
On macOS it will create a launcher app in `/Applications` for spotlight integration.

# Usage
In places where a version is specified you can also use "default" for your selected default version or "latest" for the latest release

## Install a new version
```shell
gvm install Ghidra_11.4_build
```

## Run it
```shell
# Run the default one
gvm run
# Or specify
gvm run Ghidra_11.2_build
```

## Update it
```shell
gvm update
```

## Change your default version
```shell
gvm default set Ghidra_11.2_build
gvm default show
```

## Install a third-party Processor
```shell
gvm extensions install PDK
```

## List known extensions
```shell
gvm extensions list
```

## Uninstall a version
```shell
gvm uninstall Ghidra_11.4_build
```

## List Ghidra versions
```shell
gvm list
```

# License
GPL3