mirror of
https://github.com/mrfluffy-dev/dotfiles.git
synced 2026-01-17 05:40:34 +00:00
7 lines
152 B
Bash
Executable File
7 lines
152 B
Bash
Executable File
#!/bin/sh
|
|
|
|
FILE=$(fd -t f|fzf)
|
|
LINK=$(curl -# "https://oshi.at" -F "f=@$FILE"|awk '/DL/ {print $2}')
|
|
printf "$LINK"|xclip -selection c
|
|
printf "$LINK\n"
|