Display command line snippets correctly

This commit is contained in:
Danny Moesch 2019-09-22 16:01:54 +02:00 committed by Mingshen Sun
parent 2618c6bead
commit 7beaac5b7c

View file

@ -255,26 +255,26 @@
// Multiline strings // Multiline strings
"SshAsciiArmorCopyExplanation." = "The ASCII-armored key format is similar to unencoded documents rather than the binary format. Use "SshAsciiArmorCopyExplanation." = "The ASCII-armored key format is similar to unencoded documents rather than the binary format. Use
$ cat ~/.ssh/id_rsa $ cat ~/.ssh/id_rsa
to get the key in this specific format. The clipboard will be cleared 45s after pasting."; to get the key in this specific format. The clipboard will be cleared 45s after pasting.";
"SshAsciiArmorServerExplanation." = "The ASCII-armored key format is similar to unencoded documents rather than the binary format. Use "SshAsciiArmorServerExplanation." = "The ASCII-armored key format is similar to unencoded documents rather than the binary format. Use
$ cat ~/.ssh/id_rsa $ cat ~/.ssh/id_rsa
to get the key in this specific format. Subsequently, copy it to your secured key server."; to get the key in this specific format. Subsequently, copy it to your secured key server.";
"GpgAsciiArmorCopyExplanation." = "GnuPG supports the command-line option \"-a\" that causes output to be generated in an ASCII-armored format similar to unencoded documents rather than the binary format. Use "GpgAsciiArmorCopyExplanation." = "GnuPG supports the command-line option \"-a\" that causes output to be generated in an ASCII-armored format similar to unencoded documents rather than the binary format. Use
$ gpg --export -a KEY_ID $ gpg --export -a KEY_ID
$ gpg --export-secret-keys -a KEY_ID $ gpg --export-secret-keys -a KEY_ID
to get the public and the private key in this specific format. The clipboard will be cleared 45s after pasting."; to get the public and the private key in this specific format. The clipboard will be cleared 45s after pasting.";
"GpgAsciiArmorServerExplanation." = "GnuPG supports the command-line option \"-a\" that causes output to be generated in an ASCII-armored format similar to unencoded documents rather than the binary format. Use "GpgAsciiArmorServerExplanation." = "GnuPG supports the command-line option \"-a\" that causes output to be generated in an ASCII-armored format similar to unencoded documents rather than the binary format. Use
$ gpg --export -a KEY_ID $ gpg --export -a KEY_ID
$ gpg --export-secret-keys -a KEY_ID $ gpg --export-secret-keys -a KEY_ID
to get the public and the private key in this specific format. Subsequently, copy them to your secured key server."; to get the public and the private key in this specific format. Subsequently, copy them to your secured key server.";