From 2a29d5e6873ebe0fe46cf7a0bd007f1dd6a5364b Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 2 Jan 2017 15:19:09 +1300 Subject: Work around newline-stripping in param expansion --- sh/shrc.d/rd.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'sh/shrc.d/rd.sh') diff --git a/sh/shrc.d/rd.sh b/sh/shrc.d/rd.sh index 9fd99a55..3b699c0d 100644 --- a/sh/shrc.d/rd.sh +++ b/sh/shrc.d/rd.sh @@ -51,10 +51,13 @@ rd() { exit 1 fi - # Print the target - printf '%s\n' "$new" + # Print the target with trailing slash to work around newline stripping + printf '%s/' "${new%/}" )" + # Remove trailing slash + set -- "${1%/}" + # If the subshell printed nothing, return with failure [ -n "$1" ] || return -- cgit v1.2.3