Hi All
I would like to be able to search for all subdirectory that start with to letters and 3numbers and display results and display folder properties "Owenership" and date modified. below it does all directory I want it to leave out/only display results for subdirectories.
# finds all directories that start with 2 characters and 3 numbers and rest does not matter what they are.
find /data/folders -type d -name "[a-zA-Z][a-zA-Z][0-9][0-9][0-9]*" > /home/max/resultFindDIR.txt
Thanks for your help.
I would like to be able to search for all subdirectory that start with to letters and 3numbers and display results and display folder properties "Owenership" and date modified. below it does all directory I want it to leave out/only display results for subdirectories.
# finds all directories that start with 2 characters and 3 numbers and rest does not matter what they are.
find /data/folders -type d -name "[a-zA-Z][a-zA-Z][0-9][0-9][0-9]*" > /home/max/resultFindDIR.txt
Thanks for your help.