Find command and file system types

2001-11-25 Thread Joel Hammer
I am using updatedb, like everyone, to keep track of the files on my linux box. The find command looks in part like this. \( -fstype nfs -o -fstype NFS -o -type d -regex $PRUNEREGEX \) -prune -o -print I want to exclude smbfs file types too, but when I put -fstype smbfs, it doesn't work.

Re: Find command and file system types

2001-11-25 Thread Joel Hammer
Sheez. After about an hour or more, I found the right command to use. I don't know how to interpret the chicken stratching in updatedb, though. This command seems to work fine: find /mnt/NetWork -fstype smbfs -prune -o -print This skips the samba mounted shares. Joel On Sun, Nov 25, 2001 at

Re: Find command and file system types

2001-11-25 Thread kwall
On Sun, Nov 25, 2001 at 02:50:09PM -0500, Joel Hammer wrote: Sheez. After about an hour or more, I found the right command to use. I don't know how to interpret the chicken stratching in updatedb, though. This command seems to work fine: find /mnt/NetWork -fstype smbfs -prune -o -print