Skip to content

Instantly share code, notes, and snippets.

View bdaley's full-sized avatar

Brian Daley bdaley

View GitHub Profile
@bdaley
bdaley / large-files.sh
Created May 12, 2020 00:27
Find large files in unix/linux
find / -xdev -type f -size +100M -print | xargs ls -lh | sort -k5,5 -h -r
@bdaley
bdaley / mirror.sh
Last active July 8, 2020 00:37
Mirror a website with wget
# Mirror Site
# Add --span-hosts to include remote assets
wget -P [directory_name] --mirror --html-extension --no-parent --convert-links --user-agent="" -e robots=off --wait 1 -E https://example.com/