Commit Diff


commit - 3b9e9950f092720aceb7785054993f03cd597db9
commit + 7fce1fe87ae4d29466702ef5a7210ea06d64c3d9
blob - f0a9d57b091e6279c22a6f91942caa5d271bd612
blob + 9bf34722f889595294bfb4b807b30e40ace8ca5d
--- README
+++ README
@@ -13,6 +13,5 @@ The following commands are provided:
 - llm - chat with a remote large language model
 - precis - summarise text
 - rfc - read IETF RFC documents
-- webpaste - create a web paste on webpaste.olowe.co
 - ws - web search
 - xstream - stream X display over the network
blob - 335373e6367b1877ae618fa1f5fa70a49f7514cd (mode 755)
blob + /dev/null
--- bin/webpaste
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-usage="usage: webpaste [file]"
-
-file='<-' # standard input
-if test $# -eq 1
-then
-	file="@$1"
-elif test $# -gt 1
-then
-	echo $usage
-	exit 1
-fi
-
-curl -s -F "text=$file" https://webpaste.olowe.co/paste
blob - 09cbd2a8560573b6082fca347471e63feba49388 (mode 644)
blob + /dev/null
--- man/webpaste.1
+++ /dev/null
@@ -1,21 +0,0 @@
-.Dd
-.Dt WEBPASTE 1
-.Sh NAME
-.Nm webpaste
-.Nd create a web paste on webpaste.olowe.co
-.Sh SYNOPSIS
-.Nm
-.Op Ar file
-.Sh DESCRIPTION
-The
-.Nm
-utility reads from
-.Ar file ,
-or the standard input if none is specified,
-and creates a paste from its contents on the webpaste.olowe.co service.
-A URL to the paste is printed on success.
-.Sh EXIT STATUS
-.Ex
-.Sh SEE ALSO
-.Xr curl 1 ,
-.Lk https://webpaste.olowe.co The webpaste website