My personal cheatsheets for Navi
cheatsheets navi
0
fork

Configure Feed

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

Add option to use public ssh key string

Also cleaned up the code style

+7
+7
encrypting/rage.cheat
··· 1 1 % rage 2 2 3 + ## Encrypting 4 + 3 5 # Encrypt to a recipient's public age key 4 6 rage -e -r <recipient_public_age_key> <input_file> > <input_file>.age 5 7 ··· 13 15 rage -e -r <sapphic_public_age_key> -a <input_file> > <input_file>.age 14 16 15 17 # Encrypt to a public SSH key 18 + rage -r "<public_ssh_key>" <input_file> > <input_file>.age 19 + 20 + # Encrypt to a public SSH key saved on disk 16 21 rage -R ~/.ssh/id_<ssh_key_name>.pub <input_file> > <input_file>.age 22 + 23 + ## Decrypting 17 24 18 25 # Decrypt a file using a local key 19 26 rage -d -i <private_key> <input_file> > <output_file>