You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
342 B
12 lines
342 B
function smol-delete
|
|
# delete and show
|
|
set userpass (pass show technology/linux/liteshort)
|
|
set url https://smol.gq
|
|
curl -u $userpass -d 'format=json' \
|
|
-d 'api=delete' \
|
|
-d "short=$argv[1]" \
|
|
$url | jq .
|
|
and curl -u $userpass -d 'format=json' \
|
|
-d 'api=listshort' \
|
|
$url | jq .
|
|
end
|