Looks for all the files and folders of current directory :
find . |
note : find is followed by a dot (.) , here dot represents the current directory .
Files or folders containing particular name :
find -name -print FileName/ FolderName/ FileName(s) |
Example :
To find all files with (.dbc) extension :
find -name -print *.dbc |
Note : (*) is a wildcard character which displays all files with a particular name or extension.
No comments:
Post a Comment