Command-line completion

Command-line completion
Example of command line completion in Bash.

Command line completion (also tab completion) is a common feature of command line interpreters, in which the program automatically fills in partially typed commands.

Command line interpreters are programs that allow a user to interact with the underlying operating system by typing commands at a command prompt using a command line interface (CLI), in contrast to pointing and clicking a mouse in a Graphical User Interface (GUI). Command line completion allows the user to type the first few characters of a command, program, or filename, and press a completion key (normally Tab ) to fill in the rest of the item. The user then presses Return or Enter to run the command or open the file.

Command line completion is useful in several ways, as illustrated by the animated image accompanying this article. Commonly-accessed commands, especially ones with long names, require fewer keystrokes to reach. Commands with long or difficult to spell filenames can be entered by typing the first few characters and pressing a completion key, which completes the command or filename. In the case of multiple possible completions, some command-line interpreters, especially Unix shells, will list all filenames beginning with those few characters. The user can type more characters and press Tab again to see a new, narrowed-down list if the typed characters are still ambiguous, or else complete the filename. An alternate form of completion rotates through all matching results when the input is ambiguous.

Completable elements may include commands, arguments, file names and other entities, depending on the specific interpreter and its configuration. Command line completion generally only works in interactive mode. That is, it cannot be invoked to complete partially typed commands in scripts or batch files, even if the completion is unambiguous. The name tab completion comes from the fact that command line completion is often invoked by pressing the tab key.

Contents

History

Tab completion showed up early in computing history; one of the first examples appeared in the Berkeley Timesharing System for the SDS 940, where if a typed string were ambiguous, the interpreter would do nothing, but if the string was not ambiguous, it would automatically complete it without any command from the user. This feature did not work well with the all too frequent typos, and so was a mixed blessing. This feature was imitated by Tenex's developers who made an important change: Tenex used "escape recognition", in which the interpreter would not attempt to autocomplete unless the escape key was struck (thus the name) by the user. The domain was also expanded from only program names on the Berkeley system to both program names and files on Tenex.[1] From there it was borrowed by Unix.

Example

To open the file introduction-to-command-line-completion.html with Firefox one would type:

 firefox introduction-to-command-line-completion.html

This is a long command to type. Instead we can use command line completion.

Prompting completion

The following example shows how command line completion works in bash. Other command line shells may perform slightly differently.

First we type the first three letters of our command:

 fir

Then we press Tab and because the only command in our system that starts with "fir" is "firefox", it will be completed to:

 firefox

Then we start typing the file name:

 firefox i

But this time introduction-to-command-line-completion.html is not the only file in the current directory that starts with "i". The directory also contains files introduction-to-bash.html and introduction-to-firefox.html. The system can't decide which of these filenames we wanted to type, but it does know that the file must begin with "introduction-to-", so the command will be completed to:

 firefox introduction-to-

Now we type "c":

 firefox introduction-to-c

After pressing Tab it will be completed to the whole filename:

 firefox introduction-to-command-line-completion.html

In short we typed:

 firTab iTab cTab 

This is just 8 keystrokes, which is considerably less than 52 keystrokes we would have needed to type without using command line completion.

Rotating completion

The following example shows how command line completion works with rotating completion, such as Windows's Command Prompt uses.

We follow the same procedure as for prompting completion until we have:

 firefox i

We press Tab once, with the result:

 firefox introduction-to-bash.html

We press Tab again, getting:

 firefox introduction-to-command-line-completion.html

In short we typed:

 firTab iTab Tab 

This is just 7 keystrokes, comparable to prompting-style completion. This works best if we know what possibilities the interpreter will rotate through.

Completion in different command line interfaces

  • Unix shells, including bash (the default shell in Linux and Mac OS X) and ksh among many others, have a long-standing tradition of advanced and customizable completion capabilities (see the external links section below for some examples).
    • For Korn shell users, file name completion depends on the value of the EDITOR variable. If EDITOR is set to vi, you type part of the name, and then Escape,\. If EDITOR is set to emacs, you type part of the name, and then Escape,Escape.
    • The Z shell (zsh) pioneered the support for fully programmable completion, allowing users to have the shell automatically complete the parameters of various commands unrelated to the shell itself, which is accomplished by priming the shell with definitions of all known switches as well as appropriate parameter types. This allows the user to e.g. type tar xzf Tab and have the shell complete only tarred gzip archives from the actual filesystem, skipping files which are incompatible with the input parameters. A modern zsh installation comes with completion definitions for over five hundred commands.
  • Windows PowerShell, the extensible command shell from Microsoft, which is based on object-oriented programming and the Microsoft .NET framework provides powerful and customizable completion capabilities similar to those of traditional Unix shells.[2][3][citation needed]
  • The cmd.exe command processor of Windows NT-based systems supports basic completion. It is possible to use a separate key-binding for matching directory names only.
  • cmd.exe /F:ON enables file and directory name completion characters (^F and ^D by default). Use cmd.exe /? for more info.
  • TweakUI can be used to configure the keys used for file name and directory name completion. [4]
  • The MS-DOS command processor COMMAND.COM did not have command line completion: pressing the tab key would just advance the cursor. Before the release of Windows however, various enhanced shells for MS-DOS, such as 4DOS, or the FreeDOS version of COMMAND.COM, featured Unix-style tab completion.

See also

References

External links

Unix shells

Windows command interpreters

(Be sure to check the "Applies to" section in each article)


Wikimedia Foundation. 2010.

Игры ⚽ Нужен реферат?

Look at other dictionaries:

  • Command line completion — is a common feature of command line interpreters, in which the program automatically fills in partially typed tokens. Depending on the specific interpreter and its configuration, these elements may include commands, arguments, environment… …   Wikipedia

  • Command-line interface — Screenshot of a sample Bash session. GNOME Terminal 3, Fedora 15 …   Wikipedia

  • command line — noun a) A shell, a command line interface; Im so used to the command line that I dont even know how to find things in the GUI. b) The text prompt presented to the user in a command line interface …   Wiktionary

  • Take Command (command line interpreter) — Infobox Software name = Take Command caption = developer = JP Software released = latest release version = latest release date = release date|2006|11|14 latest preview version = latest preview date = operating system = Microsoft Windows platform …   Wikipedia

  • Command history — is a feature in many operating system shells, computer algebra programs, and other software that allows the user to recall, edit and rerun previous commands. History was first introduced by Bill Joy[1] in the C shell in 1978. It quickly became… …   Wikipedia

  • Command Prompt — For other uses, see Command prompt (disambiguation). CMD redirects here. For other uses, see CMD (disambiguation). Command Prompt A component of Microsoft Windows …   Wikipedia

  • Command Prompt (Windows) — Infobox Windows component name = Command Prompt logo size = 64px caption = Command Prompt in Windows Vista| included with = Windows NT Windows CE OS/2 replaces = COMMAND.COM replaced by = related components = Windows PowerShell Batch filecmd.exe… …   Wikipedia

  • Command & Conquer (video game) — This article is about the first Command Conquer video game. For the rest of the series, see Command Conquer. Command Conquer Command and Conquer cover art (Windows 95) Developer(s) Westwood Studios …   Wikipedia

  • Command & Conquer 4: Tiberian Twilight — Developer(s) EA Los Angeles Publisher(s) Electronic Arts …   Wikipedia

  • Command & Conquer 3: Tiberium Wars — For the related novel, see Command Conquer: Tiberium Wars (novel). CNC3 redirects here. For the Canadian airport with the location identifier, see Brampton Airport. For the television station serving Trinidad and Tobago, see CNC3 Television.… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”