mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-05 12:00:16 +00:00
11 lines
293 B
Plaintext
11 lines
293 B
Plaintext
# Dump $url, do not show links urls
|
|
lynx -dump -nolist $url
|
|
|
|
# Use lynx to run repeating website actions
|
|
# For creating your keystroke file, use:
|
|
# lynx -cmd_log yourfile
|
|
lynx -accept_all_cookies -cmd_script=/your/keystroke-file
|
|
|
|
# convert html to text
|
|
lynx -force_html -stdin -dump -nolist
|