
1. To find a folder & files and its location in UNIX & Linux system, execute below command:
# find / -name textbook /database/textbook
Additional note:
/ = the location you want to search in
textbook.txt = the folder / files. If files, please make sure that you put the full name with file extension or else put * at the end.


