In Linux how can I fetch an URL and get its contents in a variable in shell script?
|
You can use
We use the You can use the curl command for this aswell as:
We need to use the |
|||||||||||
|
|
There is the You can now use the file you downloaded with wget. Or you can handle a stream with curl. Resources : |
|||
|
|
|
Hi there is many way to get a page in command line... but it also depends if you want the code source or the page itself: If you need the code source with curl:
with wget:
but if you want to get what you can see with a browser, lynx can be usefull:
I think you can find so many solutions for this little problem, maybe you should read all man page for those commands. And don't forget to replace $url by your url :) Good luck :) |
|||
|
|
|
|||
|
You can use
|
|||
|
|
|
If you have LWP installed, it provides a binary simply named "GET". $ GET http://example.com <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <META http-equiv="Content-Type" content="text/html; charset=utf-8"> <TITLE>Example Web Page</TITLE> </HEAD> <body> <p>You have reached this web page by typing "example.com", "example.net","example.org" or "example.edu" into your web browser.</p> <p>These domain names are reserved for use in documentation and are not available for registration. See <a href="http://www.rfc-editor.org/rfc/rfc2606.txt">RFC 2606</a>, Section 3.</p> </BODY> </HTML>
|
|||
|
|