Clean up those wget .listing files 3
Jul7
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