My personal cheatsheets for Navi
cheatsheets navi
0
fork

Configure Feed

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

Add options for working with armour outputs in terminal

Lily Hannah 73132f55 ce4931c8

+15
+15
encrypting/rage.cheat
··· 11 11 # Encrypt to a recipient's public age key, in armour format 12 12 rage -e -r <recipient_public_age_key> -a "<input_file>" > "<input_file>.age" 13 13 14 + # Encrypt to a recipient's public age key, in armour format, output to terminal (clipboard input) 15 + wl-paste -n | rage -e -r <recipient_public_age_key> -a 16 + 14 17 # Encrypt to my public age key, in armour format 15 18 rage -e -r <sapphic_public_age_key> -a "<input_file>" > "<input_file>.age" 19 + 20 + # Encrypt to my public age key, in armour format, output to terminal (clipboard input) 21 + wl-paste -n | rage -e -r <sapphic_public_age_key> -a 22 + 23 + # Encrypt with a passphrase, in armour format, output to terminal (clipboard input) 24 + wl-paste -n | rage -e -p -a 16 25 17 26 # Encrypt to a public SSH key 18 27 rage -r "<public_ssh_key>" "<input_file>" > "<input_file>.age" ··· 30 39 31 40 # Decrypt a file using your key (wl-paste) 32 41 wl-paste | rage -d -i - "<input_file>" > "<output_file>" 42 + 43 + # Decrypt an input that was passphrase encrypted 44 + rage -d "<input_file>" > "<output_file>" 45 + 46 + # Decrypt a text-only input that was passphrase encrypted, output to terminal (clipboard input) 47 + wl-paste -n | rage -d 33 48 34 49 $ sapphic_public_age_key: echo age17r37eg8lmvsklve0rdajsts2rgca4j5twdmcglh6qufxj7qmzv0qywulhg 35 50