With bash on linux, how would I write a command to recursively traverse shares mounted, and run commands on each file, to get the file type and size, permissions etc, and then output all of this to a file?
|
feedback
|
|
A CIFS share mount would look like a regular directory tree in the linux shell.
Ok, this does not give you the file-type detail; | |||||
feedback
|
which you can redirect to a file. | |||
feedback
|
| |||||||
feedback
|
If you used -exec file {} +, it would run file once with multiple arguments, but then the output wouldn't be nicely interleaved with find's
| |||
|
feedback
|