Using CSH and need to convert html to PDF


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Using CSH and need to convert html to PDF
# 1  
Old 02-14-2014
Using CSH and need to convert html to PDF

Hi,
I am currently using the below code and it throws an error saying badly placed ()'s. I am not sure if this right way to convert html to PDF, please help..I am using C-shell script

Code:
system ("../html2doc pdf 1000 portrait html$prnfile.html $prnfile.pdf ")
print "Content-type:application/pdf \n\n"
create(file,"<$prnfile.pdf")


Last edited by Perderabo; 02-15-2014 at 03:06 PM.. Reason: add code tags
# 2  
Old 02-14-2014
html2pdf tool you can find here wkhtmltopdf

Usage :
Code:
$ html2pdf in.html out.pdf

# 3  
Old 02-14-2014
Hi

Thanks for reply, All I need to do is just install that tool and run the script over there

---------- Post updated at 06:09 PM ---------- Previous update was at 05:59 PM ----------

hey i installed the tool and run the unix script it says html2pdf is undefined variable..can you explain in detail how it works please
# 4  
Old 02-14-2014
What exactly did you do? How exactly did you install it?
# 5  
Old 02-14-2014
it doesn't work, it doesn't help in resolving my problem, i am actually lookin for c-shell script o generate pdf not any external tools
# 6  
Old 02-15-2014
Quote:
Originally Posted by lakers646
Hi,
I am currently using the below code and it throws an error saying badly placed ()'s. I am not sure if this right way to convert html to PDF, please help..I am using C-shell script

system ("../html2doc pdf 1000 portrait html$prnfile.html $prnfile.pdf ")
print "Content-type:application/pdf \n\n"
create(file,"<$prnfile.pdf")
Quote:
Originally Posted by lakers646
it doesn't work, it doesn't help in resolving my problem, i am actually lookin for c-shell script o generate pdf not any external tools

You did not answer Corona's question, if you do not answer our question it doesn't even help us to understand your requirement, I believe that C-shell itself doesn't have inbuilt feature to convert html to doc even. So you need to depend on external tool or else you can write your own code for conversion utility.
# 7  
Old 02-15-2014
I stopped using csh in the early 90's and it doesn't really surprise me that it may have evolved over the past couple of decades. But system() and create()! In a shell? Smilie

I definitely need to go read a current csh man page sometime soon. Which version of csh should I target?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to send email HTML + PDF attachment?

I am attempting to write a script where I can pass in parameters ( to , from, the location of a pdf attachment ) and send an email that has HTML for the body content and a PDF as an attachment. I have failed to achieve this with sendmail and mutt. I recently found this. If there are any... (2 Replies)
Discussion started by: jvsrvcs
2 Replies

2. UNIX for Dummies Questions & Answers

HTML to PDF...

Hello, I am new to UNIX system. I want to convert HTML file to some non-editable format as we ship this doc to our customer. I am looking for following scripts/utilities: 1. Script/Utility to convert HTML file in PDF format. 2. Script/Utility to convert HTML file in Postscript format. 3.... (4 Replies)
Discussion started by: Abhishek Swami
4 Replies

3. UNIX for Advanced & Expert Users

Mutt for html body and multiple html & pdf attachments

Hi all: Been racking my brain on this for the last couple of days and what has been most frustrating is that this is the last piece I need to complete a project. There are numerous posts discussing mutt in this forum and others but I have been unable to find similar issues. Running with... (1 Reply)
Discussion started by: raggmopp
1 Replies

4. Shell Programming and Scripting

how to convert from csh to sh

Dear all I am installing some eda software using script. My OS is ubuntu 10.04 and the eda software writing in csh. Since ubuntu reading script file in sh writting. I need someone can help me to convert some definition in script from csh to sh. Below is part of script set archinfo =... (3 Replies)
Discussion started by: tompham
3 Replies

5. Shell Programming and Scripting

Convert .sh to .csh

Hi All, Could any one of you give me a hand to convert the following line of codes from .sh to .csh please ? proc_id=`fuser /tmp/test` if then echo "File is not being used by any thing" fi if then echo "File is being used... please wait" sleep 1 fi Regards. ---------- Post... (1 Reply)
Discussion started by: sraj142
1 Replies

6. Ubuntu

Fetch html page convert to pdf automatically via cmd or other means, shortcut

Hi, Im used to compiling when i stumble upon some interesting topics in the net and convert it into pdf files unto my HD for future reference's. I using the chrome print to pdf procedure since firefox html to pdf don't work correctly. I just wonder in someone do same thing and did it in a easy... (3 Replies)
Discussion started by: jao_madn
3 Replies

7. Shell Programming and Scripting

Perl - Convert html to pdf - PDF::FromHTML

Hi, I am trying to convert html to pdf using perl module PDF::FromHTML, am getting the error as given below. not well-formed (invalid token) at line 2, column 17, byte 56 at C:/Perl/lib/XML/Parser.pm line 187 at C:/Perl/site/lib/PDF/FromHTML.pm line 140 The perl code is as given... (2 Replies)
Discussion started by: DILEEP410
2 Replies

8. Shell Programming and Scripting

Converting html to pdf perl

Hi All, I have a requirement of converting an html form into pdf using perl. The html form contains images, tables and css implementation. I tried using various perl modules but failed to achive the target. I succeeded in generating a pdf from the html file using... (2 Replies)
Discussion started by: DILEEP410
2 Replies

9. Windows & DOS: Issues & Discussions

convert pdf's to word

Does anyone know any good tools to convert a pdf to word, I can usually cut & paste without a hitch but I have a pdf that doesn't like that and surrounds text with lines as though a table or prints tables in miniscule text. It's only one pdf file so I'm reluctant to buy a product. (3 Replies)
Discussion started by: gefa
3 Replies

10. HP-UX

Convert PCL to PDF

We're looking for a program that can convert Text and PCL formats into a PDF. We're not looking to spend a fortune so my search so far has come up empty handed as everyone wants an arm and a leg. I found txt2pdf, but that doesn't support PCL formats. Any help would be appreciated. TIA (2 Replies)
Discussion started by: Randle2I
2 Replies
Login or Register to Ask a Question