Skip to content

Instantly share code, notes, and snippets.

@bwasti
Created February 11, 2017 02:46
Show Gist options
  • Save bwasti/889583bedd0d0edbb46bad43a0be30b6 to your computer and use it in GitHub Desktop.
Save bwasti/889583bedd0d0edbb46bad43a0be30b6 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "***** pasted with pastedir *****" > /tmp/_pastedirout
echo "" >> /tmp/_pastedirout
find "${@: -1}" -type f -not -path '*/\.*' -exec bash -c 'echo ------ $1 ------ && cat $1' _ {} \; >> /tmp/_pastedirout
curl -s --data code="$(cat /tmp/_pastedirout)" https://api.teknik.io/v1/Paste | sed 's/.*\"url\":\"\([^\"]*\)\".*/\1/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment