Просмотр исходного кода

Add script to upload a file to transfer.sh

master
Arun Prakash Jana 6 лет назад
Родитель
Сommit
f135a30c0c
Не найден GPG ключ соответствующий данной подписи Идентификатор GPG ключа: A75979F35C080412
3 измененных файлов: 18 добавлений и 1 удалений
  1. +1
    -0
      user-scripts/README.md
  2. +1
    -1
      user-scripts/imgresize
  3. +16
    -0
      user-scripts/transfer

+ 1
- 0
user-scripts/README.md Просмотреть файл

@@ -13,4 +13,5 @@
| nlaunch | Drop-down independent app launcher (needs fzy), drop in `$PATH`; fallback regular prompt |
| picker | Pick files and pipe the newline-separated list to another utility |
| sxiv | Open images in current directory in sxiv |
| transfer | Upload current file to transfer.sh |
| upgrade | Check and update to latest version of nnn manually on Debian 9 Stretch |

+ 1
- 1
user-scripts/imgresize Просмотреть файл

@@ -25,7 +25,7 @@ if [ -z "$res" ]; then
read res
fi

if [ -z "$res" ]; then
if ! [ -z "$res" ]; then
if ! [ -z "$minsize" ]; then
imgp -ackx "$res" -s "$minsize"
fi


+ 16
- 0
user-scripts/transfer Просмотреть файл

@@ -0,0 +1,16 @@
#!/usr/bin/env sh

# Description: Upload a file to transfer.sh
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana

if ! [ -z "$1" ]; then
# Upload the file, show the download link and wait till user presses any key
curl -s --upload-file "$1" https://transfer.sh/`basename "$1"`
echo
read input

# To write download link to "$1".loc and exit
# curl -s --upload-file "$1" https://transfer.sh/`basename "$1"` -o `basename "$1"`.loc
fi

Загрузка…
Отмена
Сохранить