Tagged Questions
The html tag has no wiki summary.
3
votes
1answer
40 views
send html using mailx
I'd like to send a html file from a host using mailx but instead of interpreting it as html it would send it out as text (html codes). Is there a way to send it as html?
(cat <<EOCAT
Subject: ...
0
votes
1answer
30 views
How to replace the original value of variable in HTML tag
I am facing some problems in replacing the value of a variable in a html tag in a unix box. Here are the details. Please help me in finding a solution.
#!/bin/ksh
count=5
...
2
votes
2answers
54 views
Is there a way to split a HTML file without losing all the formatting within each segment?
So... the split command allows me to split a file into pieces. The problem with that, though, is that only one of the files is going to contain the HTML headers, and only one of them is going to ...
0
votes
1answer
106 views
Curl and grep html text
Is there a way to grep html text from a curl request and output grab the value that is between two html tags?
More specifically the input value of a form?
5
votes
3answers
631 views
How do I send HTML email using linux 'mail' command?
mail -s "subject" [email protected] <test.html
works, but only for plain text email.
What is the correct way to send HTML email using the Linux command mail?
1
vote
1answer
151 views
CutyCapt seems to ignore the Xvfb screen size parameters
I have a problem using CutyCapt to create images rendered for a particular screen size.
For example, if I do these:
xvfb-run --server-args="-screen 0, 800x600x24" \
~/bin/CutyCapt/CutyCapt ...
2
votes
4answers
230 views
How to convert to HTML code?
Are there any scripts that can convert between text (e.g. <hi>) and the html entities version (<hi>) like this website does? Or at least a PHP file?
2
votes
4answers
110 views
How to generate jpg thumbnails and browsable html pages from command line?
I am searching for a simple command line tool that takes a bunch of jpg files as input, copies them to some destination and generates some browsable html for it (including index page, preview ...
3
votes
1answer
67 views
Are there any good tools besides SeleniumRC that can fetch webpages including content post-painted by JavaScript?
One major shortcoming of curl is that more and more wepages are having their main piece of content painted by a JavaScript AJAX response that occurs after the initial HTTP response. curl never picks ...
3
votes
1answer
102 views
What tools allow me to present man pages as formatted HTML on a web server?
What tools exist to make man pages available on a system available via HTTP and link topics together such that references in the SEE ALSO sections and elsewhere will become hyperlinks in the HTML ...
4
votes
2answers
530 views
Parse html on Linux
I have a couple of hundred html source code files. I need to extract the contents of a particular <div> element from each of these file so I'm going to write a script to loop through each file. ...