answersLogoWhite

0

The shell interpreter must substitute or convert all metacharacters in the command line before the command parameters are given to a program. Once all metacharacters have been removed and replaced by their equivalents the program is then executed.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Describe the shell treatment of command line in unix operating system?

The shell's treatment of the command line :PARSING.VARIABLE EVALUATION.COMMAND SUBSTITUTION.REDIRECTION.WILD-CARD INTERPRETATIONPATH EVALUATION.


What command line shell opens in puppy?

Ash


What is the windows command-line interface that offers a shell?

cmd


What command starts the command line in Linux?

That would be a semi-contradiction; the command line would need to be already running in order to enter a command. The name of the program that actually provides the command line is called a shell. There are many different shells available for Linux, including Bash, ash, C Shell, fish, ksh, zsh, and scsh.The default command shell is /bin/sh (not /bin/bash, note).


What is the purpose of using echo command?

The echo command echoes out any of the command line arguments given to it. It is commonly used in shell scripts to echo what portions of the shell script are doing.


What is the role of a shell in Linux?

Program ExecutionVariable and File name Substitution I/O RedirectionPipeline HookupEnvironment ControlInterpreted Programming Language


What is a secondary prompt in UNIX?

The secondary prompt (PS2) is used to prompt the user with whatever string they want to indicate a command continuation line. For example, if I use the standard PS2 prompt and type in the command: cat abc def \ The shell will prompt me for the rest of the line with a ? mark or some other character. I usually set my secondary prompt for something more interesting, such as: PS2='more ? ' So that I know that the shell wants more information before executing the command line.


Which wildcard character replaces a single character in the command-line interface?

The question mark.


Which command line tool finds and displays objects in active directory that meet specified criteria?

DSQUERY


How do you install Clish-command line interface shell?

see http://sourceforge.net/projects/clish/


What is the shell in computer operating system?

A shell is software that provides an interface for users of an operating system which provides access to the services of a kernel.Operating system shells generally fall into one of two categories: command-line and graphical. Command-line shells provide a command-line interface (CLI) to the operating system, while graphical shells like the Windows Shell[1][2][3] provide a graphical user interface (GUI).


What does a backslash in a command line mean?

In a command line, a backslash (\) is often used as an escape character, indicating that the following character should be treated literally rather than as a special character. It can also be used to continue a command onto the next line, allowing for better readability in complex commands. Additionally, in file paths, particularly in Windows, it separates directory levels.