zshrc and password generator

so i added two different password generator functions into my .zshrc. one for regular: function genpasswd() { if [ -z $1 ]; then echo “need a character count” else tr -dc A-Za-z0-9_ < /dev/urandom | head -c ${1} | xargs fi } and one for strong: function genpasswd_strong() { if [ -z $1 ]; then ... Read More

my zshrc

so after many years of using sh & bash i have decided to give zsh a try and after using it for a couple of weeks i cant go back. so here is my zshrc @ github for people to use. in detail (at time of writing this was my current zshrc): #### interactive shell … Read More