Sep 6, 2005 #1 Diogo Technical User Mar 22, 2001 143 PT Hello. My problem is: I have "/test" and "/test/12" filesystem's. Can i list files in the filesystem "/test" ? Thanks any way. DR
Hello. My problem is: I have "/test" and "/test/12" filesystem's. Can i list files in the filesystem "/test" ? Thanks any way. DR
Sep 6, 2005 1 #2 p5wizard IS-IT--Management Apr 18, 2005 3,165 BE find /test -xdev -print the -xdev will make find stop at the "/test/12" filesystem boundary and continue to the next directory in the "/test" filesystem. have a look at the man page for more info. HTH, p5wizard Upvote 0 Downvote
find /test -xdev -print the -xdev will make find stop at the "/test/12" filesystem boundary and continue to the next directory in the "/test" filesystem. have a look at the man page for more info. HTH, p5wizard
Sep 7, 2005 Thread starter #3 Diogo Technical User Mar 22, 2001 143 PT Thanks, It's just that. DR Upvote 0 Downvote