Hi team,
I have tried below command which will give list of all locations. I need exact file or folder location with name let’s say FY10.
grep -r '\sFY10\s' /home/ -- In home directory
Hi team,
I have tried below command which will give list of all locations. I need exact file or folder location with name let’s say FY10.
grep -r '\sFY10\s' /home/ -- In home directory
Try find command:
find /home/ -type d -name "FY10"
Where,