Kexi/Releases/Signatures

From KDE Community Wiki
< Kexi‎ | Releases
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 use bash shell on Linux/Mac or git-bash or mingw shell on Windows. Type:

cd {directory-with-xz-and-sig-files}
for f in $(ls -1 *.xz) ; do gpg  --verify  $f.sig $f ; done && echo "All OK"

"All OK" message will be printed on success.