whereis
The `whereis` command is a Unix and Linux utility used to locate the binary, source, and manual page files for a given command. It searches a predefined set of standard locations on the system for these files.
When you run `whereis command_name`, the output typically consists of three parts separated by colons. The first
For example, running `whereis ls` might produce output like `ls: /bin/ls /usr/share/man/man1/ls.1.gz`. This indicates that the
---