diff options
author | Bo Ørsted Andresen <github@zlin.dk> | 2015-01-18 15:31:02 +0100 |
---|---|---|
committer | Bo Ørsted Andresen <github@zlin.dk> | 2015-01-18 15:31:02 +0100 |
commit | 65446d8eba36252d6ffd81144c6a34610dffe10f (patch) | |
tree | 898d9478e299427b05d66f5621e36e8fb462f750 | |
parent | b1c9a8c1f9b6437a7e0c7c0fbccc985d5406cd95 (diff) | |
parent | 69ba2a83baa47dd052bcfd807ec8cf9b786f99da (diff) | |
download | wgetpaste-65446d8eba36252d6ffd81144c6a34610dffe10f.tar.gz |
Merge pull request #1 from Keruspe/master
only print url to stdout
-rwxr-xr-x | wgetpaste | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -445,7 +445,8 @@ showexpirations() { } showurl() { - echo "Your ${2}paste can be seen here: $1" + echo -n "Your ${2}paste can be seen here: " >&2 + echo "$1" [[ $XPASTE ]] && x_paste "$1" primary [[ $XCLIPPASTE ]] && x_paste "$1" clipboard } |