Difference between revisions of "Command-line interpreter"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Created page with "The terms '''command-line interpreter''', '''command line shell''', '''command language interpreter''', or identical abbreviation '''CLI''', are applied to computer programs d...")
 
(External links)
 
(One intermediate revision by the same user not shown)
Line 12: Line 12:
  
 
* [[Unix shell]]
 
* [[Unix shell]]
 +
* [[Shell (computing)]]
  
 
== External links ==
 
== External links ==
  
 
* [https://en.wikipedia.org/wiki/Command-line_interface Command-line interface] @ Wikipedia
 
* [https://en.wikipedia.org/wiki/Command-line_interface Command-line interface] @ Wikipedia
 +
 +
[[Category:Computer programming]]
 +
[[Category:Computer science]]

Latest revision as of 19:30, 21 April 2016

The terms command-line interpreter, command line shell, command language interpreter, or identical abbreviation CLI, are applied to computer programs designed to interpret a sequence of lines of text which may be entered by a user, read from a file or another kind of data stream.

Description

The context of interpretation is usually one of a given operating system or programming language.

Command-line interpreters allow users to issue various commands in a very efficient (and often terse) way.

This requires the user to know the names of the commands and their parameters, and the syntax of the language that is interpreted.

See also

External links