2018-08-15 05:25:07 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2018-08-16 18:52:02 +02:00
|
|
|
version="v.2018.08.16"
|
2018-08-16 06:34:13 +02:00
|
|
|
ENDPOINT="https://ttm.sh"
|
2018-08-16 02:43:40 +02:00
|
|
|
flag_options="hvcfs::x"
|
2018-08-15 05:25:07 +02:00
|
|
|
flag_version=0
|
|
|
|
flag_help=0
|
|
|
|
flag_file=0
|
2018-08-15 05:42:09 +02:00
|
|
|
flag_shortlist=0
|
2018-08-16 02:43:40 +02:00
|
|
|
flag_colors=0
|
2018-08-15 05:25:07 +02:00
|
|
|
data=""
|
|
|
|
|
|
|
|
SUCCESS=$(tput setaf 190)
|
|
|
|
ERROR=$(tput setaf 196)
|
|
|
|
RESET=$(tput sgr0)
|
|
|
|
|
|
|
|
show_help() {
|
|
|
|
cat > /dev/stdout << END
|
|
|
|
pb [options] filename
|
|
|
|
or
|
|
|
|
(command-with-stdout) | pb
|
|
|
|
|
|
|
|
Uploads a file or data to the tilde 0x0 paste bin
|
|
|
|
|
|
|
|
OPTIONAL FLAGS:
|
|
|
|
-h Show this help
|
|
|
|
-v Show current version number
|
|
|
|
-f Explicitly interpret stdin as filename
|
2018-08-16 02:43:40 +02:00
|
|
|
-c Pretty color output
|
2018-08-15 05:25:07 +02:00
|
|
|
-s server_address Use alternative pastebin server address
|
|
|
|
END
|
|
|
|
}
|
|
|
|
|
|
|
|
die () {
|
|
|
|
msg="$1"
|
|
|
|
code="$2"
|
|
|
|
# exit code defaults to 1
|
|
|
|
if printf "%s" "${code}" | grep -q '^[0-9]+$'; then
|
|
|
|
code=1
|
|
|
|
fi
|
|
|
|
# output message to stdout or stderr based on code
|
|
|
|
if [ ! -z "${msg}" ]; then
|
|
|
|
if [ "${code}" -eq 0 ]; then
|
|
|
|
printf "%s\\n" "${msg}"
|
|
|
|
else
|
2018-08-16 02:46:35 +02:00
|
|
|
if [ ${flag_colors} -gt 0 ]; then
|
|
|
|
printf "%s%s%s\\n" "$ERROR" "${msg}" "$RESET" >&2
|
|
|
|
else
|
|
|
|
printf "%s\\n" "${msg}" >&2
|
|
|
|
fi
|
2018-08-15 05:25:07 +02:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
exit "${code}"
|
|
|
|
}
|
|
|
|
|
|
|
|
# is not interactive shell, use stdin
|
|
|
|
if [ -t 0 ]; then
|
|
|
|
flag_file=1
|
|
|
|
else
|
|
|
|
data="$(cat < /dev/stdin )"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! parsed=$(getopt ${flag_options} "$@"); then
|
|
|
|
die "Invalid input" 2
|
|
|
|
fi
|
|
|
|
eval set -- "${parsed}"
|
|
|
|
while true; do
|
|
|
|
case "$1" in
|
|
|
|
-h)
|
|
|
|
flag_help=1
|
|
|
|
;;
|
|
|
|
-v)
|
|
|
|
flag_version=1
|
|
|
|
;;
|
2018-08-16 02:43:40 +02:00
|
|
|
-c)
|
|
|
|
flag_colors=1
|
|
|
|
;;
|
2018-08-15 05:25:07 +02:00
|
|
|
-f)
|
|
|
|
flag_file=1
|
|
|
|
;;
|
|
|
|
-s)
|
|
|
|
shift
|
2018-08-16 18:29:06 +02:00
|
|
|
ENDPOINT="$1"
|
2018-08-15 05:25:07 +02:00
|
|
|
;;
|
2018-08-15 05:42:09 +02:00
|
|
|
-x)
|
|
|
|
flag_shortlist=1
|
|
|
|
;;
|
2018-08-15 05:25:07 +02:00
|
|
|
--)
|
|
|
|
shift
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
die "Internal error: $1" 3
|
|
|
|
;;
|
|
|
|
esac
|
2018-08-16 18:49:14 +02:00
|
|
|
shift
|
2018-08-15 05:25:07 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
if [ -z "$data" ]; then
|
|
|
|
data="$*"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ${flag_version} -gt 0 ]; then
|
|
|
|
printf "%s\\n" "${version}"
|
|
|
|
die "" 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ${flag_help} -gt 0 ]; then
|
|
|
|
show_help
|
|
|
|
die "" 0
|
|
|
|
fi
|
|
|
|
|
2018-08-15 05:42:09 +02:00
|
|
|
if [ ${flag_shortlist} -gt 0 ]; then
|
2018-08-16 02:50:22 +02:00
|
|
|
out="-f -v -h -s -c"
|
2018-08-15 05:57:16 +02:00
|
|
|
lsresults="$(ls)"
|
|
|
|
die "${out} ${lsresults}" 0
|
2018-08-15 05:42:09 +02:00
|
|
|
fi
|
|
|
|
|
2018-08-15 05:25:07 +02:00
|
|
|
if [ ${flag_file} -gt 0 ]; then
|
|
|
|
if [ -z "${data}" ]; then
|
2018-08-16 02:43:40 +02:00
|
|
|
if [ ${flag_colors} -gt 0 ]; then
|
|
|
|
printf "%sProvide data to upload%s\\n" "$ERROR" "$RESET"
|
|
|
|
else
|
|
|
|
printf "Provide data to upload\\n"
|
|
|
|
fi
|
2018-08-15 05:25:07 +02:00
|
|
|
elif [ ! -f "${data}" ]; then
|
2018-08-16 02:43:40 +02:00
|
|
|
if [ ${flag_colors} -gt 0 ]; then
|
|
|
|
printf "%s%s%s\\tFile not found.%s\\n" "$RESET" "${data}" "$ERROR" "$RESET"
|
|
|
|
else
|
|
|
|
printf "%s\\tFile not found.\\n" "${data}"
|
|
|
|
fi
|
2018-08-15 05:25:07 +02:00
|
|
|
# attempt to split data and upload each string as file
|
|
|
|
for f in ${data}
|
|
|
|
do
|
|
|
|
# if there's nothing to parse, skip this loop
|
|
|
|
if [ "$f" = "$data" ]; then
|
|
|
|
break;
|
|
|
|
fi
|
2018-08-16 02:43:40 +02:00
|
|
|
if [ ${flag_colors} -gt 0 ]; then
|
|
|
|
printf "%s%s\\t%s" "$RESET" "${f}" "$SUCCESS"
|
|
|
|
fi
|
2018-08-15 05:25:07 +02:00
|
|
|
if [ -f "${f}" ]; then
|
|
|
|
curl -F"file=@${f}" "${ENDPOINT}"
|
2018-08-16 02:46:35 +02:00
|
|
|
if [ ${flag_colors} -gt 0 ]; then
|
|
|
|
printf "%s" "$RESET"
|
|
|
|
fi
|
2018-08-15 05:25:07 +02:00
|
|
|
else
|
2018-08-16 02:43:40 +02:00
|
|
|
if [ ${flag_colors} -gt 0 ]; then
|
|
|
|
printf "%sFile not found.%s\\n" "$ERROR" "$RESET"
|
|
|
|
else
|
|
|
|
printf "File not found.\\n"
|
|
|
|
fi
|
2018-08-15 05:25:07 +02:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
else
|
2018-08-16 02:43:40 +02:00
|
|
|
if [ ${flag_colors} -gt 0 ]; then
|
|
|
|
printf "%s${data}\\t%s" "$RESET" "$SUCCESS"
|
|
|
|
curl -F"file=@${data}" "${ENDPOINT}"
|
|
|
|
printf "%s" "$RESET"
|
|
|
|
else
|
|
|
|
curl -F"file=@${data}" "${ENDPOINT}"
|
|
|
|
fi
|
2018-08-15 05:25:07 +02:00
|
|
|
fi
|
|
|
|
else
|
|
|
|
if [ -z "${data}" ]; then
|
2018-08-16 02:43:40 +02:00
|
|
|
if [ ${flag_colors} -gt 0 ]; then
|
|
|
|
printf "%sNo data found for upload. Please try again.%s\\n" "$ERROR" "$RESET"
|
|
|
|
else
|
|
|
|
printf "No data found for upload. Please try again.\\n"
|
|
|
|
fi
|
2018-08-15 05:25:07 +02:00
|
|
|
else
|
2018-08-16 02:43:40 +02:00
|
|
|
if [ ${flag_colors} -gt 0 ]; then
|
|
|
|
printf "%s" "$SUCCESS"
|
|
|
|
printf "%s" "${data}" | curl -F"file=@-;filename=null.txt" "${ENDPOINT}"
|
|
|
|
printf "%s" "$RESET"
|
|
|
|
else
|
|
|
|
printf "%s" "${data}" | curl -F"file=@-;filename=null.txt" "${ENDPOINT}"
|
|
|
|
fi
|
2018-08-15 05:25:07 +02:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|