Skip to content

Instantly share code, notes, and snippets.

View ebemunk's full-sized avatar

Buğra Fırat ebemunk

View GitHub Profile
@ebemunk
ebemunk / wget.sh
Last active June 20, 2020 19:45
scrape a simple webpage with wget
wget \
--recursive \
--no-clobber \
--page-requisites \
--html-extension \
--convert-links \
--restrict-file-names=windows \
--domains example.com \
--no-parent \
http://example.com/page.html
yarn upgrade $(yarn outdated | awk '{print $1}' | head -n -1 | tail -n +3 | xargs | cat)