echo (command)

From Wikipedia, the free encyclopedia

In computing, echo is a command in DOS, OS/2, Microsoft Windows, Unix and Unix-like operating systems that places a string on the terminal. It is typically used in shell scripts and batch programs to output status text to the screen or a file.

Contents

[edit] Usage example

$ echo This is a test.
This is a test.
$ echo "This is a test." > ./test.txt
$ cat ./test.txt
This is a test.

Some variants of Unix support options such as -n and -e. These are not standard[1] due to historical incompatibilities between BSD and System V; the printf command can be used in situations where this is a problem.

[edit] Implementation example

The echo command can be implemented in the C programming language with only a few lines of code:

#include <stdio.h>
/* echo command-line arguments; 1st version */
int main(int argc, char *argv[])
{
  int i;
  for (i = 1; i < argc; i++)
    printf("%s%s", argv[i], (i < argc-1) ? " " : "");
  printf("\n");
  return 0;
}

[edit] References

[edit] External links

[edit] See also