My personal cheatsheets for Navi
cheatsheets navi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add file picker to rsign.cheat

Also add double-quoting to filename fields

+8 -5
+8 -5
signing/rsign.cheat
··· 1 1 % rsign 2 2 3 3 # Sign a file with a trusted comment 4 - rsign sign <input_file> -t <trusted_comment> 4 + rsign sign "<input_file>" -t <trusted_comment> 5 5 6 6 # Verify a file with my public key 7 - rsign verify <input_file> -P <sapphic_public_key> 7 + rsign verify "<input_file>" -P <sapphic_public_key> 8 8 9 9 # Verify a file with my public key, with a different named signature file 10 - rsign verify <input_file> -P <sapphic_public_key> -x <signature_file> 10 + rsign verify "<input_file>" -P <sapphic_public_key> -x "<signature_file>" 11 11 12 12 # Verify a file with someone else's public key 13 - rsign verify <input_file> -P <public_key> 13 + rsign verify "<input_file>" -P <public_key> 14 14 15 15 # Verify a file with someone else's public key, with a different named signature file 16 - rsign verify <input_file> -P <public_key> -x <signature_file> 16 + rsign verify "<input_file>" -P <public_key> -x "<signature_file>" 17 17 18 18 $ sapphic_public_key: echo RWRGdAWJCSQzseElKbOIcuDvVwxR+oKzsy8FXX3Wsx0I98MA6bTVcGaL 19 + 20 + $ input_file: find . -maxdepth 1 -type f | gum choose 21 + $ signature_file: find . -maxdepth 1 -name "*.minisig" -type f | gum choose