From 891d3a4067a9946b056e54e306ee0d1a8335cd37 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 8 Jun 2024 12:14:52 +0200 Subject: [PATCH] =?UTF-8?q?${@}=20=E2=86=92=20${*}?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cd.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cd.sh b/cd.sh index 7c6b261..9ae374a 100644 --- a/cd.sh +++ b/cd.sh @@ -664,7 +664,7 @@ cd_mkdir () { } cd_open () { - echo "${CD_OPEN}${@}" + echo "${CD_OPEN}${*}" } cd_openssl () { @@ -697,7 +697,7 @@ shift } cd_shut () { - echo "${CD_SHUT}${@}" + echo "${CD_SHUT}${*}" } cd_split () { @@ -708,7 +708,7 @@ cd_step () { CD_STEP=$((CD_STEP+1)) echo "\ ${CD_DOWN} -${CD_VERT} ${CD_STEP} ${@} +${CD_VERT} ${CD_STEP} ${*} ${CD___UP}" }