How can I use the unix “find” command to locate my files within the .snapshot directory?
A7. The home directory server does not support the “find” command inside of the .snapshot directory. Since it does support the “ls” command and it supports “find” within .snapshot’s subdirectories, you can use a shell script to combine the “find” and the “ls” command to look for your files. A working script is: #!/bin/ksh for i in `”ls”` do cd $i echo searching `pwd` find . -name filename -print cd .. done Where filename is the name of the file.