mirror of
https://github.com/gotbletu/shownotes
synced 2024-11-05 00:00:51 +00:00
7 lines
258 B
Plaintext
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"
|
|
}
|