mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-11 01:10:31 +00:00
14 lines
390 B
Plaintext
14 lines
390 B
Plaintext
# lynx
|
|
# Classic non-graphical (CLI) web browser
|
|
|
|
# Dump [URL]; do not show link URLs.
|
|
lynx -dump -nolist [URL]
|
|
|
|
# Creating your keystroke file for use with lynx(1).
|
|
lynx -cmd_log [FILE]
|
|
# Use above keystroke file to run repeating website actions.
|
|
lynx -accept_all_cookies -cmd_script=[FILE]
|
|
|
|
# Convert HTML from STDIN to text, then dump it to STDOUT.
|
|
lynx -force_html -stdin -dump -nolist
|