How to find a file in linux (Solution)
Written on
July 5, 2008 at 11:05 am by
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 ~


