mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-03-01 04:31:30 +00:00
12 lines
342 B
Bash
Executable File
12 lines
342 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# 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
|