Archive for July, 2009
Clean up those wget .listing files
For some reason when I did a wget FTP mirror to backup some data it left behind lots of listing files, here is how you remove them. Enter the directory and use the command: $ for i in `find . -name ".listing"`; do rm -v $i; done
