Kexi/Releases/Signatures

From KDE Community Wiki
< Kexi‎ | Releases
Revision as of 22:49, 5 March 2017 by Jstaniek (talk | contribs) (Created page with "Signatures can be verified using <tt>gpg --verify file.sig file</tt>. User-ID: <tt>Jarosław Staniek <staniek</tt><tt>@</tt><tt>kde.org></tt>, Key-ID: <tt>1B6524DB</tt>, Finge...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Signatures can be verified using gpg --verify file.sig file. User-ID: Jarosław Staniek <staniek@kde.org>, Key-ID: 1B6524DB, Fingerprint: 4866 BAF7 13B4 6567 7A40 5964 3C7C 0E20 1B65 24DB, GPG key: here.

To verify multiple signatures for *.xz files in a given directory, type (bash shell) :

for f in $(ls -1 *.xz) ; do gpg --verify $f.sig $f ; done && echo "All OK"

"All OK" will be printed on success.