From f5d5d9669057b892b7cf11d63f25261f4cc9616b Mon Sep 17 00:00:00 2001 From: Adnan Ahmed Date: Sat, 1 Apr 2017 21:11:48 +0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 12416a4..c88dd37 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ $ echo $SHELL ``` ### b. `whereis` -Finds out where a specific binary is on your system. +Whereis search for executables, source files, and manual pages using a database built by system automatically. ```bash whereis name ``` @@ -52,7 +52,7 @@ $ whereis php ``` ### c. `which` -Locate a program file in the user's path. This command will prints full path of the executable(s). It does this by searching the directories listed in the environment variable PATH. +which search for executables in the directories specified by the environment variable PATH. This command will prints full path of the executable(s). ```bash which program_name ```