Here I keep a list of Linux commands that I find useful from time to time, but I often forget its usage. Just put here the following for my own references.
[b]find[/b]
To search for any file named filename in the root directory and all of its subdirectories.
To search for any file beginning with file in the current directory and any subdirectory.
To search for any file that is larger then 1000k.
[b]find[/b]
find / -name 'filename'
To search for any file named filename in the root directory and all of its subdirectories.
find -name 'file*'
To search for any file beginning with file in the current directory and any subdirectory.
find -name '*' -size +1000k
To search for any file that is larger then 1000k.