Skip to content

Instantly share code, notes, and snippets.

@apg
Created August 9, 2016 19:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apg/390b1b306930efbc230184f580b56a8d to your computer and use it in GitHub Desktop.
Save apg/390b1b306930efbc230184f580b56a8d to your computer and use it in GitHub Desktop.
Upload chunks to chunk.io (use - for STDIN)
#!/bin/sh
URL=$(curl -sT $1 chunk.io)
if [ -n "$DISPLAY" ]; then
echo -n $URL | xclip
echo $URL "copied to the clipboard"
else
echo $URL
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment