bash:command_substitution
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash:command_substitution [2021/01/09 14:57] – peter | bash:command_substitution [2021/01/26 16:57] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== BASH - Command Substitution ====== | ||
- | |||
- | Command substitution is used to insert the output of one command into a second command. | ||
- | |||
- | E.g. with an assignment: | ||
- | |||
- | <code bash> | ||
- | today=$(date) | ||
- | echo " | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | Mon Jul 26 13:16:02 MEST 2004 | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | This can also be used with other commands besides assignments: | ||
- | |||
- | <code bash> | ||
- | echo "Today is $(date +%A), it's $(date +%H: | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | Today is Monday, it's 13:21 | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | |||
- | * The first time to print the week-day | ||
- | * The second time for the current time. | ||
- | |||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | Of course, this could just be done with: | ||
- | |||
- | <code bash> | ||
- | date " | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | </ | ||
- | |||
- | |||
- | ---- | ||
- | |||
- | ===== Nested Command Substitutions ===== | ||
- | |||
- | Command substitutions may be nested within each other: | ||
- | |||
- | <code bash> | ||
- | IPs=($(awk /" | ||
- | </ | ||
- | |||
- | Notably, once inside a command substitution, | ||
- | |||
- | That is, double quotes inside the substitution do not match up with double quotes outside the substitution. | ||
- | |||
- | So, things like this may be done: | ||
- | |||
- | <code bash> | ||
- | echo "The IPs are $(awk /" | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE:** | ||
- | |||
- | * The outermost quotes delimit a single argument that will be passed to echo. | ||
- | * The inner double quotes prevent word splitting or glob expansion on the results of the inner command substitution. | ||
- | * The two sets of double quotes are independent of each other. | ||
- | |||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Command Substitutions Subshells ===== | ||
- | |||
- | Command substitutions create subshells, so any changes to variables, current directory, etc. inside the command substitution affect only the rest of the substitution, | ||
- | |||
- | <code bash> | ||
- | var=$(cd ../ | ||
- | echo " | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | /usr/bin | ||
- | </ | ||
- | |||
- | But now run: | ||
- | |||
- | <code bash> | ||
- | pwd | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | /home/peter | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | </ | ||
- | |||
- | |||
- | <code bash> | ||
- | var=$(" | ||
- | bash: non existent command: command not found | ||
- | |||
- | echo $? | ||
- | 127 | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | |||
- | This allows common cases such as **foo=$(grep foo bar)** to populate variables without needing a second step to remove the newline. | ||
- | |||
- | Sometimes, you may want the newlines; for example, when attempting to read an entire file into a variable without data loss (except NUL bytes): | ||
- | |||
- | <code bash> | ||
- | var=$(< | ||
- | |||
- | # Workaround: | ||
- | var=$(cat file; printf x) var=${var%x} | ||
- | </ | ||
- | |||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | |||
- | |||
- | ===== Portability ===== | ||
- | |||
- | The $(command) syntax is supported by KornShell, BASH, and PosixShell. | ||
- | |||
- | Older shells (e.g. BourneShell) use the following syntax: | ||
- | |||
- | <code bash> | ||
- | `command` | ||
- | </ | ||
- | |||
- | <WRAP important> | ||
- | **NOTE: | ||
- | |||
- | These are often called " | ||
- | |||
- | The use of **$(< | ||
- | |||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Nesting Command Substitutions ===== | ||
- | |||
- | Nesting of command substitutions using the `...` syntax is more difficult. | ||
- | |||
- | One must use backslashes: | ||
- | |||
- | <code bash> | ||
- | IPs_inna_string=`awk "/ | ||
- | | ||
- | # Very Bourne-ish: use the positional params as a pseudo array | ||
- | set -- `awk "/ | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | |||
- | </ | ||
bash/command_substitution.1610204279.txt.gz · Last modified: 2021/01/09 14:57 by peter