2019-12-24 11:11:39 +05:30
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2020-06-10 23:32:03 +05:30
|
|
|
# Description: Upload to Firefox Send if ffsend is found, else
|
|
|
|
# Paste contents of a text a file http://ix.io
|
2020-01-03 07:34:59 +05:30
|
|
|
# Upload a binary file to file.io
|
2021-05-15 23:02:01 +05:30
|
|
|
#
|
2020-06-10 23:32:03 +05:30
|
|
|
# Dependencies: ffsend (https://github.com/timvisee/ffsend), curl, jq, tr
|
2021-05-15 23:02:01 +05:30
|
|
|
#
|
2020-01-03 07:34:59 +05:30
|
|
|
# Note: Binary file set to expire after a week
|
2019-12-24 11:11:39 +05:30
|
|
|
#
|
|
|
|
# Shell: POSIX compliant
|
|
|
|
# Author: Arun Prakash Jana
|
|
|
|
|
2020-11-22 20:09:14 +05:30
|
|
|
if [ -n "$1" ] && [ -s "$1" ]; then
|
2021-05-14 17:33:28 +05:30
|
|
|
if type ffsend >/dev/null 2>&1; then
|
2021-04-24 20:55:21 +03:00
|
|
|
ffsend -fiq u "$1"
|
2020-06-10 23:32:03 +05:30
|
|
|
elif [ "$(mimetype --output-format %m "$1" | awk -F '/' '{print $1}')" = "text" ]; then
|
2020-01-03 07:34:59 +05:30
|
|
|
curl -F "f:1=@$1" ix.io
|
|
|
|
else
|
|
|
|
# Upload the file, show the download link and wait till user presses any key
|
|
|
|
curl -s -F "file=@$1" https://file.io/?expires=1w | jq '.link' | tr -d '"'
|
2019-12-24 11:11:39 +05:30
|
|
|
|
2020-01-03 07:34:59 +05:30
|
|
|
# To write download link to "$1".loc and exit
|
|
|
|
# curl -s -F "file=@$1" https://file.io/?expires=1w -o `basename "$1"`.loc
|
|
|
|
fi
|
2019-12-24 11:11:39 +05:30
|
|
|
else
|
2020-01-03 07:34:59 +05:30
|
|
|
printf "empty file!"
|
2019-12-24 11:11:39 +05:30
|
|
|
fi
|
2020-01-03 07:34:59 +05:30
|
|
|
|
|
|
|
read -r _
|