From f64180d52ffc9e11cc04c5f40765093b6bfaf7ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Sun, 6 Oct 2024 01:47:43 +0200 Subject: [PATCH] .zshrc: added new comamnds based on gnu-utils on MacOS --- .zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.zshrc b/.zshrc index c41b5cb..7de7472 100644 --- a/.zshrc +++ b/.zshrc @@ -151,6 +151,9 @@ if [[ "$(uname)" == "Darwin" ]]; then alias pip3='/opt/homebrew/bin/pip$PYTHONVERSION' alias python='/opt/homebrew/bin/python$PYTHONVERSION' alias pip='/opt/homebrew/bin/pip$PYTHONVERSION' + alias sed='gsed' + alias zcat='gzcat' + alias date='gdate' alias lsblk="diskutil list" alias Update="~/.local/bin/Update-pkg; brew update; brew upgrade"