After the command line is terminated by the key, the shell goes ahead with processing the command line in one or more passes. The sequence is well defined and assumes the following order. Parsing: The shell first breaks up the command line into words, using spaces and the delimiters, unless quoted. All consecutive occurrences of a space or tab are replaced here with a single space. Variable evaluation: All words preceded by a $ are evaluated as variables, unless quoted or escaped. Command substitution: Any command surrounded by backquotes is executed by the shell which then replaces the standard output of the command into the command line. Wild-card interpretation: The shell finally scans the command line for wild-cards (the characters *, ?, [, ]). Any word containing a wild-card is replaced by a sorted list of filenames that match the pattern. The list of these filenames then forms the arguments to the command. PATH evaluation: It finally looks for the PATH variable to determine the sequence of directories it has to search in order to hunt for the command.
Unix
Topic: Basic
Explain the steps that a shell follows while processing a command.
Browse random answers:
Which of the following commands is not a filterman , (b) cat , (c) pg , (d) head
State and explain about features of UNIX?
What is the use of the command "ls -x chapter[1-5]"
Explain the following commands.
How does the kernel differentiate device files and ordinary files?
Explain about the command lynx?
What is the difference between cat and more command?
Explain about chmod options filename?
What is the significance of the 'tee' command?
Difference Between Grep and Find command?
How is the command '$cat file2' different from '$cat >file2 and >> redirection operators'
What is the significance of the 'tee' command?
Is it possible to restrict incoming message?
Using the commands ps, cut, tr and kill, along with pipes, write a command that will find all sleep processes running on the system and kill them?
Is it possible to count number char, line in a file; if so, How?
Explain the steps that a shell follows while processing a command.
What does the command ?$ls | wc 'l > file1' do?
In UNIX 50 records are there, i want to retrieve the 20-30 records & i want 23 record which commands we are using?