1
0
Fork 0
mirror of https://github.com/jarun/nnn.git synced 2025-02-18 23:34:37 +00:00
nnn/plugins/upload

31 lines
964 B
Text
Raw Normal View History

2019-12-24 11:11:39 +05:30
#!/usr/bin/env sh
# 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
#
# 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
if type ffsend >/dev/null 2>&1; then
2021-04-24 20:55:21 +03:00
ffsend -fiq u "$1"
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 _