|
unix find command
I need help with tweaking the unix find command. currently the find command searches all the directories under $div/users modified in the last 1 day.
find $div/users -type d -mtime +1
I need this changed to find only subdirectories and sub-subdirectories modified in the last 1 day under $div/users. the find should go only two levels, and not 4 levels below it is currently doing.
|