From 205cbc03a559700cddfbeb79959693595e7c0f75 Mon Sep 17 00:00:00 2001 From: Gardouille Date: Thu, 31 Mar 2022 22:29:49 +0200 Subject: [PATCH] Add cd .. aliases --- zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zshrc b/zshrc index 18034eb..e0928e5 100644 --- a/zshrc +++ b/zshrc @@ -257,6 +257,8 @@ alias ghist='fc -El 0 | grep --' ## Gestion des répertoires alias u='cd ..' +alias uu='cd ../..' +alias uuu='cd ../../..' alias cd..='cd ..' alias ..='cd ..' alias ...='cd ../..'