This code lets you search for every folder’s index.html and then download that without having to download every other file. This is assuming you have ssh’d in and are in the starting directory of your choice.

^Croot@server> find . -name "index.html" > /folder/test.txt
 
root@server> tar cvf /folder/indexfiles.tar -I /folder/test.txt
 
root@server>

« »