Compare commits
2 commits
6b503255b7
...
bca682b561
Author | SHA1 | Date | |
---|---|---|---|
bca682b561 | |||
675f59b762 |
3 changed files with 7 additions and 1 deletions
|
@ -5,4 +5,4 @@
|
|||
[credential]
|
||||
helper = store --file ~/.git-credentials
|
||||
[commit]
|
||||
gpgsign = true
|
||||
gpgsign = false
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue