6

I want to know what exactly are Linux commands? & how to identify and locate them?

In other words what are different kind/type/category of commands? How to identify them and locate (source) it.

Pandya
  • 24,618
  • You keep wanting this reopened yet are not offering up anything different than what's already been referenced in the duplicate. This is a duplicate of that question until you add more relevant details to the Q that make it different. Your A that you've accepted below is a complete facsimile of one of the A's even to the dup. You're getting hung up on the title of the other one. Read the actual body to the Q. They are dups! – slm Oct 05 '14 at 11:41

1 Answers1

13

Following is from from the book The Linux Command Line. The full PDF tutorial is also available here:

A command can be one of four different things:

  1. An executable program like all those files we saw in /usr/bin. Within this category, programs can be compiled binaries such as programs written in C and C++, or programs written in scripting languages such as the shell, perl, python, ruby, etc.

  2. A command built into the shell itself. bash supports a number of commands internally called shell builtins. The cd command, for example, is a shell builtin.

  3. A shell function. These are miniature shell scripts incorporated into the environ- ment. We will cover configuring the environment and writing shell functions in later chapters, but for now, just be aware that they exist.

  4. An alias. Commands that we can define ourselves, built from other commands.

To identify the type of command, you can use type:

NAME
    type - Display information about command type.

Example:

$ type ls
ls is aliased to `ls --color=auto'
$ type cd
cd is a shell builtin

To display the location of command, you can use which:

$ which info
/usr/bin/info
$ which init
/sbin/init

Hope this is helpful for new users to know basic about commands.

Pandya
  • 24,618