#
Who is data hoarder?
Data hoarder archive large amounts of digital data (terrabytes) that might otherwise be lost, such as old video games, videos and websites.
Data hoarder archive large amounts of digital data (terrabytes) that might otherwise be lost, such as old video games, videos and websites.
wget \
--recursive \
--level=inf \
--no-clobber \
--page-requisites \
--adjust-extension \
--span-hosts \
--user-agent=Mozilla \
--convert-links \
--no-parent \
-e robots=off \
--domains blog.ca.sual.in \
https://blog.ca.sual.in/
It will download my site. You can download specific subdirectory.
You may want to decrease --level
- its’ depth for subdirectories download.
--domains
- limits to specific domain.
curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o ~/.local/bin/yt-dlp; chmod a+rx ~/.local/bin/yt-dlp
yt-dlp -f "best[height<=1080]+bestaudio" https://www.youtube.com/watch?v=kf5eUikyXYA
yt-dlp -f bestvideo+bestaudio <URL>
yt-dlp -f "best[height<=1080]+bestaudio" <URL>
yt-dlp --extract-audio --audio-format mp3 --audio-quality 0 <URL>
yt-dlp -c <URL>