How can I paste to codepad.org from the commandline using curl?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

here's a Python script

import urllib
import urllib2
url = 'http://codepad.org'
content=open("myscript.py").read()
values = {'lang' : 'Python',
          'code' : content,
          'submit':'Submit'}

data = urllib.urlencode(values)
req = urllib2.Request(url, data)
response = urllib2.urlopen(req)
the_page = response.read()
for href in the_page.split("</a>"):
    if "Link:" in href:
        ind=href.index('Link:')
        found = href[ind+5:]
        for i in found.split('">'):
            if '<a href=' in i:
                 print "The link: " ,i.replace('<a href="',"").strip()

output

$ python python.py
The link:  http://codepad.org/W0G8HIzM
link|improve this answer
Works like a charm... Thanks a lot man – M0E-lnx Feb 10 '10 at 20:56
feedback

Yes, you can do it with curl. Assuming your code is Python and in myfile.python, you can do it like this:

$ curl -d "lang=Python&submit=Submit" --data-urlencode code@myfile.py codepad.org

(Edited to make it work.)

link|improve this answer
This only posts '@myfile.c' on a new paste. I need a way to upload a whole file – M0E-lnx Feb 10 '10 at 20:09
I'm actually pasting python code, but I do have the file named after the @ in the same directory I'm executing the command from. $ curl -d lang=Python -d code=@myfile.py -d private=False -d submit=Submit codepad.org Still only posts the filename – M0E-lnx Feb 10 '10 at 20:19
Sorry, you were right, it didn't work. I have edited my reply and it now works for me. Please let me know if it works for you too. – Hans W Feb 10 '10 at 21:31
The curl method is still not working for me. It says --data-urlencode option is unknown – M0E-lnx Feb 10 '10 at 21:38
That option was introduced in curl 7.18.0 (jan 2008), so it's quite recent. – Hans W Feb 10 '10 at 21:43
show 1 more comment
feedback

You can also use reval:

reval test.py
reval -l ruby -e 'p 2+2'
reval prog.hs -p # make private
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.