.zshrc: added new comamnds based on gnu-utils on MacOS

This commit is contained in:
Marcin Woźniak 2024-10-06 01:47:43 +02:00
parent 4b929f4b0a
commit f64180d52f
Signed by: y0rune
GPG Key ID: F204C385F57EB348

3
.zshrc
View File

@ -151,6 +151,9 @@ if [[ "$(uname)" == "Darwin" ]]; then
alias pip3='/opt/homebrew/bin/pip$PYTHONVERSION' alias pip3='/opt/homebrew/bin/pip$PYTHONVERSION'
alias python='/opt/homebrew/bin/python$PYTHONVERSION' alias python='/opt/homebrew/bin/python$PYTHONVERSION'
alias pip='/opt/homebrew/bin/pip$PYTHONVERSION' alias pip='/opt/homebrew/bin/pip$PYTHONVERSION'
alias sed='gsed'
alias zcat='gzcat'
alias date='gdate'
alias lsblk="diskutil list" alias lsblk="diskutil list"
alias Update="~/.local/bin/Update-pkg; brew update; brew upgrade" alias Update="~/.local/bin/Update-pkg; brew update; brew upgrade"