all repos — dotfiles @ 0c629a2b5b6a9c3e6d5b26bf9e792a80d74f40d1

linux dotfiles

bin/scripts/ix (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
#!/bin/sh

# upload text to ix.io

PASTE() {
	curl -F 'f:1=<-' ix.io
}

if test -z "$1"; then
	cat -    | PASTE
else
	cat "$1" | PASTE
fi