🖥️elinks
➡️This is a command-line reference manual for commands and command combinations that you don’t use often enough to remember it. This cheatsheet explains the elinks command with important options and switches using examples.
2 minute read
▁ ▂ ▃ ▄ ꧁ 🔴☠ COMMANDLINE-KUNGFU WITH CHEATSHEETS ☠🔴꧂▅ ▃ ▂ ▁
# ███████╗██╗ ██╗███╗ ██╗██╗ ██╗███████╗
# ██╔════╝██║ ██║████╗ ██║██║ ██╔╝██╔════╝
# █████╗ ██║ ██║██╔██╗ ██║█████╔╝ ███████╗
# ██╔══╝ ██║ ██║██║╚██╗██║██╔═██╗ ╚════██║
# ███████╗███████╗██║██║ ╚████║██║ ██╗███████║
# ╚══════╝╚══════╝╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝╚══════╝
elinks -dump bit\.ly/qutWZK|tr -d ,|sed -e '/^2014/q'|awk '/^[12]/{p=$6/$2*100; printf "%d %0.4f%%\n",$1,p}'
# % US pop. murdered 1960-2014
elinks http://maximize-your-cpu-temperature.com/
# Use elinks to read articles on websites that like to waste CPU energy and your time.
elinks -dump bit\.ly/qutWZK|tr -d ,|sed -e '/^2015/q'|awk '/^[12]/{p=$6/$2*100; printf "%d %0.4f%%\n",$1,p}'
# % US pop. murdered 1960-2015
elinks https://en.wikipedia.org/wiki/Right_to_privacy … |sed -n '/Article 12/,+6p'
# Pipe text from Wikipedia into sed, print regex+6 lines.
# Asked 5 years ago this month.
elinks https://stackoverflow\.com/questions/11828270/how-to-exit-the-vim-editor | grep viewed
# Get a list of instructors from a webpage.
elinks -dump-width 1000 -dump http://example.com/2017training/ | awk -F: '/Instructor/{print $2}'
# Solve the basic arithmetic CAPTCHA
elinks -dump https://www.example.com/contact | awk -F: '/Math question:/{print $2}' | bc
elinks http://bit.ly/theydidnotpatch |sed -e 's/Apache Struts security flaw/the fact that/' |less
# Fixed headline for a @zackwhittaker article
elinks -no-numbering -dump-width 999 $(date +"http://enwp.org/%B_%d ")|sed '/Births/,/Deaths/!d'|grep \* | egrep -i --color=no "(math|computer|program|engineer|scien|invent)" # Show today's famous #STEM birthdays from the Wikipedia page for today's date. #TwoAteZero
#==============================##==============================#
# CMD elinks #
#==============================##==============================#
Cheatsheets are an excellent complement to other information sources like Linux man-pages, Linux help, or How-To’s and tutorials, as they provide compact and easily accessible information. While man-pages and detailed tutorials often contain comprehensive explanations and extensive guides, cheatsheets summarize the most important options forthe command elinks in a clear format. This allows users to quickly access the needed information for elinks without having to sift through lengthy texts. Especially in stressful situations or for recurring tasks, cheatsheets for elinks are a valuable resource to work efficiently and purposefully.
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
█║▌│║█║▌★ KALI ★ PARROT ★ DEBIAN 🔴 PENTESTING ★ HACKING ★ █║▌│║█║▌
██╗ ██╗ ██████╗ ██████╗ ██╗ ██╗███████╗██████╗
████████╗██╔══██╗██╔═══██╗╚██╗██╔╝██╔════╝██╔══██╗
╚██╔═██╔╝██║ ██║██║ ██║ ╚███╔╝ █████╗ ██║ ██║
████████╗██║ ██║██║ ██║ ██╔██╗ ██╔══╝ ██║ ██║
╚██╔═██╔╝██████╔╝╚██████╔╝██╔╝ ██╗███████╗██████╔╝
╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═════╝
█║▌│║█║▌ WITH COMMANDLINE-KUNGFU POWER █║▌│║█║▌
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.