How to find a file in linux (Solution)
Published: July 5, 2008 , Updated: May 31, 2010 , Author: mkyong
“find” command is useful in linux, just issue following command, we can find whatever file we want in Linux easily.
find (directory) -name (filename)
For example, i want to find out where is psql command located. “/” means whole file system in Linux, make sure you have privilege to access it.
find / -name psql
Great command ~
Any Java questions or problems? please post at this JavaNullPointer.com forum, see you there ~