Move output option to earlier in command
The output option dosen't seem to work on Windows when it is at the end of the command. Moving it to earlier in the command fixes this issue.pull/119/head
parent
f387d7bacf
commit
399127c43d
|
@ -666,9 +666,9 @@ $ gpg --armor --export-secret-subkeys $KEYID > $GNUPGHOME/sub.key
|
||||||
On Windows, note that using any extension other than `.gpg` or attempting IO redirection to a file will garble the secret key, making it impossible to import it again at a later date:
|
On Windows, note that using any extension other than `.gpg` or attempting IO redirection to a file will garble the secret key, making it impossible to import it again at a later date:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ gpg --armor --export-secret-keys $KEYID -o \path\to\dir\mastersub.gpg
|
$ gpg -o \path\to\dir\mastersub.gpg --armor --export-secret-keys $KEYID
|
||||||
|
|
||||||
$ gpg --armor --export-secret-subkeys $KEYID -o \path\to\dir\sub.gpg
|
$ gpg -o \path\to\dir\sub.gpg --armor --export-secret-subkeys $KEYID
|
||||||
```
|
```
|
||||||
|
|
||||||
# Backup
|
# Backup
|
||||||
|
@ -841,7 +841,7 @@ $ gpg --armor --export $KEYID | sudo tee /mnt/public/$KEYID-$(date +%F).txt
|
||||||
Windows:
|
Windows:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ gpg --armor --export $KEYID -o \path\to\dir\pubkey.gpg
|
$ gpg -o \path\to\dir\pubkey.gpg --armor --export $KEYID
|
||||||
```
|
```
|
||||||
|
|
||||||
**Optional** Upload the public key to a [public keyserver](https://debian-administration.org/article/451/Submitting_your_GPG_key_to_a_keyserver):
|
**Optional** Upload the public key to a [public keyserver](https://debian-administration.org/article/451/Submitting_your_GPG_key_to_a_keyserver):
|
||||||
|
|
Loading…
Reference in New Issue