diff --git a/ttm.sh b/ttm.sh new file mode 100755 index 0000000..da1d554 --- /dev/null +++ b/ttm.sh @@ -0,0 +1,7 @@ +#!/bin/bash +# Simple file uploader to ttm.sh +if [ -z $1 ]; then + echo "usage: FILENAME" +else + cat $1 | curl -F file=@- https://ttm.sh +fi