2019-12-24 05:41:39 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2020-06-10 18:02:03 +00:00
|
|
|
# Description: Upload to Firefox Send if ffsend is found, else
|
|
|
|
# Paste contents of a text a file http://ix.io
|
2020-01-03 02:04:59 +00:00
|
|
|
# Upload a binary file to file.io
|
2021-05-15 17:32:01 +00:00
|
|
|
#
|
2020-06-10 18:02:03 +00:00
|
|
|
# Dependencies: ffsend (https://github.com/timvisee/ffsend), curl, jq, tr
|
2021-05-15 17:32:01 +00:00
|
|
|
#
|
2020-01-03 02:04:59 +00:00
|
|
|
# Note: Binary file set to expire after a week
|
2019-12-24 05:41:39 +00:00
|
|
|
#
|
|
|
|
# Shell: POSIX compliant
|
|
|
|
# Author: Arun Prakash Jana
|
|
|
|
|
2020-11-22 14:39:14 +00:00
|
|
|
if [ -n "$1" ] && [ -s "$1" ]; then
|
2021-05-14 12:03:28 +00:00
|
|
|
if type ffsend >/dev/null 2>&1; then
|
2021-04-24 17:55:21 +00:00
|
|
|
ffsend -fiq u "$1"
|
2020-06-10 18:02:03 +00:00
|
|
|
elif [ "$(mimetype --output-format %m "$1" | awk -F '/' '{print $1}')" = "text" ]; then
|
2020-01-03 02:04:59 +00:00
|
|
|
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 05:41:39 +00:00
|
|
|
|
2020-01-03 02:04:59 +00:00
|
|
|
# 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 05:41:39 +00:00
|
|
|
else
|
2020-01-03 02:04:59 +00:00
|
|
|
printf "empty file!"
|
2019-12-24 05:41:39 +00:00
|
|
|
fi
|
2020-01-03 02:04:59 +00:00
|
|
|
|
|
|
|
read -r _
|