From 1ee73be7f9deaf4debc9f9a85320ef0d32e17cc7 Mon Sep 17 00:00:00 2001 From: bretello Date: Fri, 5 Apr 2024 15:08:57 +0200 Subject: [PATCH] zsh: functions: get rid of ppath (use realpath instead) --- functions/misc.zsh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/functions/misc.zsh b/functions/misc.zsh index 939231f..5e41396 100755 --- a/functions/misc.zsh +++ b/functions/misc.zsh @@ -44,13 +44,6 @@ function calc awk "BEGIN { print $* }" } -## Print full path of item in current directory -function ppath -{ - echo "$PWD/$1" -} - - function warning { echo -e "${Yellow}Warning:$CLEAR $@" >&2 }