diff options
-rwxr-xr-x | wgetpaste | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -37,7 +37,7 @@ show_url() { # for that task. [[ "$(type -t add_to_clipboard)" == "function" ]] && add_to_clipboard "${1}" - echo "Your ${2}paste can be seen here: $*" + echo "Your ${2}paste can be seen here: ${1}" } ### defaults @@ -418,6 +418,10 @@ while [[ ! -z "${1}" ]]; do NICK="$(escape "${2}")" shift 2 ;; + -r | --raw ) + RAW=true + shift + ;; --service=* ) [[ -z "${1#*=}" ]] && show_usage 1>&2 && exit 1 verify_service "${1#*=}" |