#mark
一个非常简单的利用 netcat 就可以免验证上传 code snippet 的工具: https://termbin.com
简单封装了一下
注意,数据保留期限为一周:
via Memos
一个非常简单的利用 netcat 就可以免验证上传 code snippet 的工具: https://termbin.com
简单封装了一下
tb () {
if [ $# -eq 0 ]
then
cat | nc termbin.com 9999
else
if [ -f "$1" ]
then
cat "$1" | nc termbin.com 9999
else
echo "$*" | nc termbin.com 9999
fi
fi
}注意,数据保留期限为一周:
7. Duration of Data Retention
The lifespan of any data or content posted on the service is limited to one week. After this period, such data will be automatically deleted.
via Memos