Skip to content

Instantly share code, notes, and snippets.

@kirkegaard
Created December 30, 2020 02:58
Show Gist options
  • Save kirkegaard/0715a7785e9476cb00511b8a1cd78fb2 to your computer and use it in GitHub Desktop.
Save kirkegaard/0715a7785e9476cb00511b8a1cd78fb2 to your computer and use it in GitHub Desktop.
Upload images to imgur from cli and save it in paste buffer
imgur() {
res=$(curl -sSF image=@$1 https://api.imgur.com/3/upload |jq -r '.data.link')
echo $res |pbcopy
echo $res
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment