How Do I Search for Files on linux ?
find / -name “kartook” -print
This command tells find to start looking in the root directory of the filesystem.
(/) for files named (-name) kartook and then to print (-print) the full name of each file it finds.
Possibly Related Posts:
- How ot install Tweetdeck on ubuntu 10.04 64bit
- VMware : How to setup Windows Active Directory authentication on ESX 4.0
- LINUX : How to Find the Most Memory taking process in Ubuntu
- Vmware : How to install Vmware Tools on Backtrack4- Final
- Linux : CentOS-5.5 Released

