From c3521ba749daae1fc9ecaa3290dc22e6b7ca2d3e Mon Sep 17 00:00:00 2001 From: Sean Date: Wed, 28 Aug 2019 14:43:59 -0700 Subject: [PATCH] feat(postdetails): add postdetails support for https://termbin.com (#2485) --- lgsm/functions/command_postdetails.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lgsm/functions/command_postdetails.sh b/lgsm/functions/command_postdetails.sh index e0967117f..817d8d6c0 100644 --- a/lgsm/functions/command_postdetails.sh +++ b/lgsm/functions/command_postdetails.sh @@ -105,6 +105,12 @@ elif [ "${posttarget}" == "https://hastebin.com" ] ; then fn_print_ok_nl "Posting details to hastebin.com for ${postexpire}" pdurl="${posttarget}/${link}" echo " Please share the following url for support: ${pdurl}" +elif [ "${posttarget}" == "https://termbin.com" ] ; then + fn_print_dots "Posting details to termbin.com" + link=$(cat "${postdetailslog}" | nc termbin.com 9999 | tr -d '\n\0') + fn_print_ok_nl "Posting details to termbin.com" + pdurl="${link}" + echo " Please share the following url for support: ${pdurl}" else fn_print_warn_nl "Review output in: ${postdetailslog}" core_exit.sh