logoalt Hacker News

freedombenyesterday at 7:17 PM1 replyview on HN

I put mine in various aes encrypted file (like `~/.secrets.aes`) and then source it explicitly when needed with:

    . <(aescrypt -d -o - ~/.secrets.aes)
I have a handful of aliases/functions to make it more smooth, but that's the core.

Replies

maccardyesterday at 7:50 PM

Where are those aliases stored?

show 2 replies