🏠Best PracticesUnix shellOn this pageUnix shellReplace file extension of all files in a folderfor file in *.htmldo mv "$file" "${file%.html}.txt"doneCopyWget download all files from html indexwget -r -np -nH --cut-dirs=3 -R index.html <url>Copy