upgraded to python3.5 and made makepass parametrizable

This commit is contained in:
hellerve
2015-09-24 15:40:20 +02:00
parent ae81d79f44
commit a681c3a4ab
15 changed files with 1401 additions and 2 deletions

6
zshrc
View File

@@ -223,7 +223,11 @@ save_dotfiles(){
makepass(){
cat /dev/urandom | base64 | head -c 20
LEN=20
if [ $# > 0 ] ; then
LEN=$1
fi
cat /dev/urandom | base64 | head -c $LEN
echo ''
}