Explorar el Código

add encrypt and decrypt stream func

pull/1/head
10sr hace 12 años
padre
commit
014c6c9866
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  1. +10
    -0
      bashrc

+ 10
- 0
bashrc Ver fichero

@@ -150,6 +150,16 @@ then
|| complete -o default -o nospace -F _git g
fi

encrypt-stream(){
test $# -eq 1 &&
mcrypt --key $1 2>/dev/null | base64
}

decrypt-stream(){
test $# -eq 1 &&
base64 -d | mcrypt -d --key $1 2>/dev/null
}

showinfo(){
echo "Japanese letters are 表示可能"



Cargando…
Cancelar
Guardar