To display the content of a web page in the terminal, you can use the curl
command.
Here’s the basic syntax to display the content of a web page:
curl <URL>
For example, to display the content of the Google homepage, you can use the following command:
curl https://www.google.com
This will print the HTML code of the Google homepage in the terminal. If you want to save the web page content to a file, you can use the -o
or --output
option.
For example:
curl https://www.google.com -o google.html
This will save the content of the Google homepage to a file named google.html
.