Better wording
[kdepim.git] / kleopatra / uiserver / sign
blobaf6cdf7d165cd81d9c3d0b2bcbd6bcf75ffcccfe
1 #!/bin/bash
3 # This is test script 2/3 for email sign/encrypt operation on Unix.
5 # See prep-encrypt for instructions.
7 rm -rf test.data
8 echo "Hello, World" > test.data
9 exec gpg-connect-agent -S ~/.gnupg/S.uiserver --run <(cat <<'BYE'
10 /subst
11 /serverpid
12 session 123 Re: Letter received
13 /sendfd test.data r
14 INPUT FD
15 /sendfd test.data.signencrypt.sign.out w
16 OUTPUT FD
17 sign --detached --protocol=CMS
18 bye
20 BYE