find . -name "*.c" returns the right thing, listing all the files with the whole full relative path from the point of execution (example):
./a/b/c/d/e/f/g/h/file.c
find . -name "*.c" > o with the output going to a file substitutes the beginning of the path with the word "dump" (example):
./dump/g/h/file.c
Any idea why?
find . -name "*.c" | tee list.txt" and see what you get (both on the screen and in the file). – Zack Jan 26 at 4:48dump? What's the output ofls -l dump/g/h/file.c? – Keith Thompson Jan 26 at 23:15