Kexi/Releases/Signatures: Difference between revisions
(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...") |
(Update for windows) |
||
Line 1: | Line 1: | ||
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>, Fingerprint: <tt>4866 BAF7 13B4 6567 7A40 5964 3C7C 0E20 1B65 24DB</tt>, GPG key: [http://kexi-project.org/download/JaroslawStaniek.gpg here]. | 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>, Fingerprint: <tt>4866 BAF7 13B4 6567 7A40 5964 3C7C 0E20 1B65 24DB</tt>, GPG key: [http://kexi-project.org/download/JaroslawStaniek.gpg here]. | ||
To verify multiple signatures for *.xz files in a given directory | 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" will be printed on success. | "All OK" message will be printed on success. |
Latest revision as of 10:45, 29 January 2018
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.