Files
Arch-R/packages/sysutils/busybox/scripts/pastebinit

12 lines
342 B
Plaintext
Raw Normal View History

#!/bin/sh
2018-07-16 20:45:36 +02:00
# SPDX-License-Identifier: GPL-2.0-or-later
2019-03-26 15:58:05 +00:00
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
2018-07-16 20:45:36 +02:00
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
if [ -n "${PASTEUSR}" -a "${PASTEPWD}" ]; then
cat "$@" | curl -F 'f:1=<-' ${PASTEUSR}:${PASTEPWD}@ix.io
else
cat "$@" | curl -F 'f:1=<-' http://ix.io
fi