Created
March 17, 2016 01:35
-
-
Save krompus/b6cc8ae888d590974626 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Upload raw text to interweb, copy URL to clipboard. | |
ixc() { | |
if [[ -z "$1" ]] | |
then | |
echo 'Usage: ixc foo.bar' | |
else | |
cat $1 | curl -F 'f:1=<-' ix.io | xclip -selection clipboard | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment