Most people want to be able to locate a file on a file system (hard drive), Microsoft makes this easy with the find utility in Windows.
A lot of you probably host your web sites on systems that run UNIX/Linux as an operating system. These operating systems also have a find utility, it is a command line tool.
You can get reference information on the find command by using the man(ual) pages.
i.e. man find
The easiest way to use find is from your current directory (pwd).
find . -name "______" -print
The pattern you are looking for would go where the underscores appear above.
i.e. find . -name "*.css" -print
Posted by
Akhil
0 comments:
Post a Comment