2019-12-24 05:41:39 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2020-01-03 02:04:59 +00:00
|
|
|
# Description: Paste contents of a text a file http://ix.io
|
|
|
|
# Upload a binary file to file.io
|
2020-05-06 05:29:57 +00:00
|
|
|
# Dependencies: curl, jq, tr
|
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-01-03 02:04:59 +00:00
|
|
|
if ! [ -z "$1" ] && [ -s "$1" ]; then
|
|
|
|
if [ "$(mimetype --output-format %m "$1" | awk -F '/' '{print $1}')" = "text" ]; then
|
|
|
|
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 _
|