On 9/7/07, Tom Bombadil <[EMAIL PROTECTED]> wrote: > But is there any way to get a list of all files in the filesystem > without using 'find'?
tar cvfX /dev/null /mnt > filelist.txt or perhaps ls -R /mnt mtree(8) might also be useful, depending on what you're trying to accomplish. But the best method would be using find(8), perhaps using some of the directory walk options would speed things up for you. -- Jon