Compare commits

..

2 commits

Author SHA1 Message Date
bca682b561 dont automatically sign 2023-08-30 13:29:55 +02:00
675f59b762 newpass function 2023-08-30 13:29:50 +02:00
3 changed files with 7 additions and 1 deletions

View file

@ -5,4 +5,4 @@
[credential]
helper = store --file ~/.git-credentials
[commit]
gpgsign = true
gpgsign = false

View file

@ -29,6 +29,9 @@ alias gls=/bin/ls
function largefiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(G|T|P|E)\s" }
function midfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(M|G|T|P|E)\s" }
function smallfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(B|K)\s" }
function newpass() {
LC_ALL=C tr -dc '[:alnum:]' < /dev/urandom | head -c${1:-$0}
}
### ZSH HOME
export ZSH=$HOME/.zsh-server

View file

@ -37,6 +37,9 @@ alias gls=/bin/ls
function largefiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(G|T|P|E)\s" }
function midfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(M|G|T|P|E)\s" }
function smallfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(B|K)\s" }
function newpass() {
LC_ALL=C tr -dc '[:alnum:]' < /dev/urandom | head -c${1:-$0}
}
### ZSH HOME
export ZSH=$HOME/.zsh