2019-12-24 05:41:39 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2024-07-25 20:57:25 +00:00
|
|
|
# Description: Selections are archived into a tar file (uncompressed) and uploaded to file.io
|
2022-11-18 12:44:16 +00:00
|
|
|
# For single files:
|
2024-07-25 20:57:25 +00:00
|
|
|
# Paste contents of a text file to 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
|
|
|
#
|
2024-07-25 20:57:25 +00:00
|
|
|
# Dependencies: curl, jq, tar, file with `--mime-type` support
|
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
|
|
|
|
|
2022-11-18 12:44:16 +00:00
|
|
|
selection=${NNN_SEL:-${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.selection}
|
|
|
|
if [ -s "$selection" ]; then
|
2024-07-25 20:57:25 +00:00
|
|
|
xargs -0 tar -c < "$selection" | \
|
|
|
|
curl -s -F "file=@/dev/stdin;filename=selection.tar" 'https://file.io/?expires=1w' | \
|
|
|
|
jq '.link' | tr -d '"'
|
2022-11-18 12:44:16 +00:00
|
|
|
|
|
|
|
# Clear selection
|
|
|
|
printf "-" > "$NNN_PIPE"
|
2019-12-24 05:41:39 +00:00
|
|
|
else
|
2022-11-18 12:44:16 +00:00
|
|
|
if [ -n "$1" ] && [ -s "$1" ]; then
|
2024-07-25 20:57:25 +00:00
|
|
|
if file --mime-type "$1" | grep -q -F "text/"; then
|
|
|
|
curl -F "file=@$1" https://0x0.st
|
|
|
|
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 '"'
|
|
|
|
# To write download link to "$1".loc and exit
|
|
|
|
# curl -s -F "file=@$1" https://file.io/?expires=1w -o `basename "$1"`.loc
|
|
|
|
fi
|
2022-11-18 12:44:16 +00:00
|
|
|
else
|
2024-07-25 20:57:25 +00:00
|
|
|
printf "empty file!"
|
2022-11-18 12:44:16 +00:00
|
|
|
fi
|
2019-12-24 05:41:39 +00:00
|
|
|
fi
|
2020-01-03 02:04:59 +00:00
|
|
|
|
|
|
|
read -r _
|