1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-02 22:58: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

@@ -7,7 +7,7 @@ variety of languages and technologies. These are things that don't really
warrant a full blog post. These are mostly things I learn by pairing with
smart people at [Hashrocket](http://hashrocket.com/).
_416 TILs and counting..._
_417 TILs and counting..._
---
@@ -388,6 +388,7 @@ _416 TILs and counting..._
- [SSH Escape Sequences](unix/ssh-escape-sequences.md)
- [SSH With Port Forwarding](unix/ssh-with-port-forwarding.md)
- [Switch Versions of a Brew Formula](unix/switch-versions-of-a-brew-formula.md)
- [View A Web Page In The Terminal](unix/view-a-web-page-in-the-terminal.md)
- [Watch The Difference](unix/watch-the-difference.md)
- [Watch This Run Repeatedly](unix/watch-this-run-repeatedly.md)
- [Where Are The Binaries?](unix/where-are-the-binaries.md)

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