ソースを参照

add encrypt and decrypt stream func

pull/1/head
10sr 12年前
コミット
014c6c9866
1個のファイルの変更10行の追加0行の削除
  1. +10
    -0
      bashrc

+ 10
- 0
bashrc ファイルの表示

@@ -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 表示可能"



読み込み中…
キャンセル
保存