Bash: How to clear bash history
history -c && history -w
# recommended
posts that share tags with this one Bash/BASH 
How To: cdspell – Directory Typo Correction
2014-07-15 1 min read →
Bash/BASH # bash-shell
Generate Random ASCII Art in shell
How to generate random ascii art in shell: wget -qO - http://www.asciiartfarts.com/random.cgi | sed -n '/<pre>/,/<\/pre>/p' | sed -n '/<table*/,/<\/table>/p' | sed…
2014-05-04 1 min read →
Bash/BASH # bash-shell
Bash: wget recursively download website
Recursively download website wget -r --no-parent --reject "index.html*" http://mysite.com/configs/.vim/
2013-10-11 1 min read →
0 comments