> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/linux/gpg/gpg-test.md).

# GPG Test

We can check whether or not GPG is working correctly by running -

```bash
echo "Test" | gpg --clearsign
```

If this doesn't throw any error(s), it means GPG is working correctly.

***Source:*** [***StackOverFlow***](https://stackoverflow.com/a/41054093)
