Bash Command Line Expansion: Difference between revisions
Jump to navigation
Jump to search
Line 7: | Line 7: | ||
Each line read by bash from command line is interpreted as a [[Bash_Concepts#Pipeline|pipeline]]: a sequence of commands separated by the [[Bash_Concepts#.7C|pipe character (|)]]. | Each line read by bash from command line is interpreted as a [[Bash_Concepts#Pipeline|pipeline]]: a sequence of commands separated by the [[Bash_Concepts#.7C|pipe character (|)]]. | ||
Each command is split into tokens that separated by metacharacters. | Each command is split into tokens that separated by [[Bash_Concepts#Metacharacters|metacharacters]]. |
Revision as of 23:52, 8 September 2017
Internal
Overview
Each line read by bash from command line is interpreted as a pipeline: a sequence of commands separated by the pipe character (|).
Each command is split into tokens that separated by metacharacters.