Tagged Questions
Lynx is a cross platform, GPL licensed, text-mode web browser.
5
votes
2answers
174 views
Which CPAN module would you recommend for turning HTML into plain text?
Which CPAN module would you recommend for turning HTML into formatted plain text?
One strict requirement is that the module must handle Unicode characters.
3
votes
2answers
255 views
Java HTML normalizer?
IS there a library which can transform any given HTML page with JS, CSS all over it, into a minimalistic uniform format?
For instance, if we render stackoverflow homepage, I want it to be shown in a ...
3
votes
6answers
438 views
regular expression to extract data from html page
I want to extract all anchor tags from html pages. I am using this in Linux.
lynx --source http://www.imdb.com | egrep "<a[^>]*>"
but that is not working as expected, since result contains ...
3
votes
5answers
4k views
Elinks or Lynx?
Please, state your reasons for your terminal browser. Why are you using Lynx or Elinks? How do they help you in programming?
2
votes
3answers
1k views
Run lynx -dump in background?
I have a bash script mystuff containing a line like
lynx -dump http://example.com >tmpfile
and the script works fine, including this part, except when I run it non-interactively:
$ ./mystuff ...
2
votes
4answers
912 views
HTML to text conversion in shell script
I wrote a shell script to convert HTML source to plain text using lynx.
Here it is:
#!/bin/sh
if [ -f = "/usr/bin/lynx" ]
then
if [ -f = "$1" ]
then
lynx -dump $1 > $2
...
1
vote
3answers
102 views
How can I copy a link URL in either lynx or links to copy to vim?
I am having the most difficult time trying to figure out how to copy a link URL in either of these two browsers and then paste it into vim. Does anyone know how to go about doing this? I am using ...
1
vote
2answers
297 views
How to configure Emacs/VM to decode text/html mails using lynx rather than emacs-w3m?
I recently upgrated to Emacs 23.2.1. I am using VM version 8.1.93a to read my email.
I used to change html mail to text via the following line in my vm configuration file:
(add-to-list ...
1
vote
2answers
319 views
Lynx removes newline characters from post_data input
I am trying to post a file to a URL via the MS-DOS command prompt. I am using the Lynx browser to do this. I am able to post my file just fine, but all of the newline characters are removed by Lynx ...
1
vote
2answers
117 views
How do I determine the value of an symbolic path
When I use "lynx" via the terminal I believe it is using an symbolic link, but my Google searches have failed to show me how to determine the symbolic path value.
That is, I would like to determine ...
0
votes
0answers
25 views
Cannot get lynx browser to work on Android
I downloaded a compiled lynx binary from xda and everytime I start lynx it tells me that it is unable to connect to remote host. I changed the lynx.cfg to use localhost and that loads, but when I ...
0
votes
1answer
70 views
Debian: javascript support in elinks text browser?
How to enable javascript support in elinks?
One of the sites I'm using doesn't work without javascript, and the source code looks like this
<script type="text/javascript" ...
0
votes
3answers
90 views
How can I screen-scrape the HTML result of a non-trivial user scenario
I want to be able to get the HTML for a page which, if I was doing it interactively in a browser, would involve multiple actions and page loads:
1. Go to homepage
2. Enter text into a login form and ...
0
votes
0answers
33 views
Java Wrapper For Terminal Application
I need to write a Lynx wrapper in Java, which would basically grab the text-rendered version of the page from Lynx and return it as a string to whatever Java class called my wrapper. I've never done ...
0
votes
1answer
53 views
Lynx: how to use -auth flag when username contains domain?
I have a problem with Lynx. I'm trying to log in on a web page using the -auth flag. The line I use is
lynx -accept_all_cookies -auth=mydomain\myuser:mypass
http://ultracooldomain.com/default.aspx
...
0
votes
1answer
145 views
wget or lynx not able to download some webpages due to frames contained in it
I want to download http://www.wordwebonline.com/search.pl?w=humane this webpage on UNIX.
I tried to use wget and lynx but the page is not download. Instead following text is seen in it
FRAME: ...
0
votes
0answers
182 views
lynx command in cpanel for cron is not working [closed]
Hi there
I have this wierd problem... i am trying to do batch processing using cron.... so i used this command in cpanel lynx -dump http://mysite.org.uk/inex.php/cron/processTxt but every time i get ...
0
votes
2answers
155 views
Lynx, A-Jax alt?
Humm, I know that Lynx is a text-only browser so scripts, css, images, frames, etc do not run, So I was wondering if there would be an alternate to A-Jax for lynx? I do not like the chances but there ...
0
votes
2answers
198 views
HTML to TXT library that mimics the output of “lynx -dump”?
the problem is really that specific. Title says it all:
I need a library in java that can take HTML content and generate text in the same format that is generated by the Linux lynx program.
Thank ...
0
votes
2answers
203 views
google instant search on lynx
Just curious, since google search uses a lot of JS and AJAX, would it ever be possible to make instant search work on a text browser like lynx?
if yes, what would it take?
0
votes
2answers
60 views
The proper way to script periodically pulling a page from an https site
I want to create a command-line script for Cygwin/Bash that logs into a site, navigates to a specific page and compares it with the results of the last run.
So far, I have it working with Lynx like ...
0
votes
2answers
146 views
call lynx from jsp script
I have an execute(String cmd) in a jsp script that calls the exec method from the Runtime class.
It works when I call a local command, like a php script stored on the server. for example: ...
0
votes
1answer
87 views
Displaying a pound sign in Lynx browser?
Is there anyway to have a pound sign display correctly using Lynx text only browser?
using ampersand-pound-semicolon it just shows a u with an accent on top.
using £, nothing displays.
Thanks.