aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/rd.sh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-01-02 15:19:09 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-01-02 15:19:30 +1300
commit2a29d5e6873ebe0fe46cf7a0bd007f1dd6a5364b (patch)
tree6d3463a3177ce3e2f68b73f2c7579c51ad45c889 /sh/shrc.d/rd.sh
parentBind the calculator key on my keyboard (diff)
downloaddotfiles-2a29d5e6873ebe0fe46cf7a0bd007f1dd6a5364b.tar.gz
dotfiles-2a29d5e6873ebe0fe46cf7a0bd007f1dd6a5364b.zip
Work around newline-stripping in param expansion
Diffstat (limited to 'sh/shrc.d/rd.sh')
-rw-r--r--sh/shrc.d/rd.sh7
1 files changed, 5 insertions, 2 deletions
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