forked from electricdusk/rushlink
18 lines
479 B
Cheetah
18 lines
479 B
Cheetah
{{define "body"}}
|
|
<pre>
|
|
#RU URL SHORTENER
|
|
=================
|
|
|
|
Based on https://0x0.st/, this site allows you to easily shorten URLs using
|
|
the command line.
|
|
|
|
## USAGE
|
|
|
|
# Shorten a URL
|
|
curl -F'shorten=http://example.com/some/long/url' <a href="{{.Request.Host}}">{{.Request.Host}}</a>
|
|
|
|
# Shorten a URL with a token to delete it later
|
|
curl -F'shorten=http://example.com/some/long/url' -F'deleteToken=' <a href="{{.Request.Host}}">{{.Request.Host}}</a>
|
|
</pre>
|
|
{{end}}
|