You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
258 B
Plaintext

# this is notes for video: http://www.youtube.com/watch?v=r90IdQwF-hs
# supports MS 2007/2010 doc / docx files, dont upload any sensitive data
doc2pdf () {
curl -# -F inputDocument=@"$1" http://www.doc2pdf.net/convert/document.pdf > "${1%.*}.pdf"
}