“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 ~

This article was posted in Unix / Linux category.

Related Posts