diff options
author | June McEnroe <june@causal.agency> | 2019-02-14 02:16:27 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-02-14 02:16:27 -0500 |
commit | 656e95683afe196e53ce1bd96ac75fe8a6dea5b8 (patch) | |
tree | a3ae0f36990058a7aba9b374a2402b382ec92d5c /bin | |
parent | Add forgotten "sixth" book of H2G2 (diff) | |
download | src-656e95683afe196e53ce1bd96ac75fe8a6dea5b8.tar.gz src-656e95683afe196e53ce1bd96ac75fe8a6dea5b8.zip |
Avoid newline when copying URL to pasteboard
Diffstat (limited to 'bin')
-rw-r--r-- | bin/up.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/up.sh b/bin/up.sh index 1ca34a1c..5f9f409c 100644 --- a/bin/up.sh +++ b/bin/up.sh @@ -54,5 +54,5 @@ done : ${fn:=upload} url=$($fn "$@") -echo "$url" | pbcopy || true +printf '%s' "$url" | pbcopy || true echo "$url" |