Add alias to calculate bcrypt hashes
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
d929cc8574
commit
4aa57f98c7
1 changed files with 1 additions and 0 deletions
|
@ -33,6 +33,7 @@ bindkey '^[[1;5D' backward-word
|
|||
|
||||
## Aliases
|
||||
alias alpine='docker run --rm -ti alpine /bin/sh'
|
||||
alias bcrypt='python3 -c "import bcrypt; import sys; print(bcrypt.hashpw(sys.argv[1].encode(\"utf-8\"), bcrypt.gensalt(10)).decode(\"utf-8\"))"'
|
||||
alias gometalinter='gometalinter --enable-all -D aligncheck -D errcheck -D lll --cyclo-over=15 -e bindata.go --vendor'
|
||||
alias htpasswd='python3 -c "import crypt; import sys; print(crypt.crypt(sys.argv[1], crypt.mksalt(crypt.METHOD_SHA512)));"'
|
||||
alias mysql='docker run --rm -ti -v $(pwd):$(pwd) -w $(pwd) mysql bash'
|
||||
|
|
Loading…
Reference in a new issue