From 2a6906b782ad681c043ea5d8ee6abc6fd8cbfc91 Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Tue, 27 Oct 2020 14:29:33 +0000 Subject: [PATCH] Add alias for encrypting and decrypting with OpenSSL --- roles/home-cli/files/shrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/home-cli/files/shrc b/roles/home-cli/files/shrc index fd5f072..1b654f1 100644 --- a/roles/home-cli/files/shrc +++ b/roles/home-cli/files/shrc @@ -167,6 +167,8 @@ alias ls="/bin/ls $LSOPTIONS" alias now="date +%Y%m%dT%H%M%S%z" alias nowu="date -u +%Y%m%dT%H%M%SZ" alias pacup="sudo pacman -Syu --needed" +alias streamenc="openssl aes-256-cbc -pbkdf2 -in - -out - -e" +alias streamdec="openssl aes-256-cbc -pbkdf2 -in - -out - -d" alias ta="$HOME/opt/textadept/textadept" alias wgr="wordgrinder" alias ytmp3="youtube-dl -q -x --audio-format=mp3"