1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Add View A Web Page In The Terminal as a unix til

This commit is contained in:
jbranchaud
2016-05-14 10:11:15 -05:00
parent b49788e9c7
commit ed6c80bee1
2 changed files with 18 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
# View A Web Page In The Terminal
There are a number of programs out there that allow you to view a web page
from right within the terminal. These text-based browsers are great for
viewing pages that make basic use of html without relying on JavaScript for
fancy user interactions, such as the docs page for a language.
One such program is `link`. If you don't already have it, you can install it
with something like `homebrew`. Then run `links` with any URL for a
magnificent, ad-free experience:
```
links http://www.postgresql.org/docs/current/static/functions-string.html
```
h/t Jack Christensen