mirror of
https://github.com/onceupon/Bash-Oneliner
synced 2025-02-16 13:08:23 +00:00
Variable substitution changes
Clarify documentation and give a few more examples
This commit is contained in:
parent
c2b96736bd
commit
dc268515b7
1 changed files with 13 additions and 3 deletions
16
README.md
16
README.md
|
@ -135,9 +135,19 @@ $HOSTNAME current hostname
|
|||
##### Variable substitution within quotes
|
||||
```bash
|
||||
# foo=bar
|
||||
echo "'$foo'"
|
||||
#'bar'
|
||||
# double/single quotes around single quotes make the inner single quotes expand variables
|
||||
echo $foo
|
||||
# bar
|
||||
echo "$foo"
|
||||
# bar
|
||||
# single quotes cause variables to not be expanded
|
||||
echo '$foo'
|
||||
# $foo
|
||||
# single quotes within double quotes will not cancel expansion and will be part of the output
|
||||
echo "'$foo'"
|
||||
# 'bar'
|
||||
# doubled single quotes act as double quotes making variables expand
|
||||
echo ''$foo''
|
||||
# bar
|
||||
```
|
||||
##### Get the length of variable
|
||||
```bash
|
||||
|
|
Loading…
Add table
Reference in a new issue