10 lines
256 B
Text
10 lines
256 B
Text
|
#!/bin/sh
|
||
|
|
||
|
url="https://bin.ixvd.net"
|
||
|
filepath="$1"
|
||
|
filename=$(basename -- "$filepath")
|
||
|
extension="${filename##*.}"
|
||
|
|
||
|
response=$(curl --data-binary @${filepath:-/dev/stdin} --url $url)
|
||
|
echo "$url$response"".""$extension" | tee >(xclip -selection clipboard)
|