mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
11 lines
281 B
Bash
Executable File
11 lines
281 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# 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
|