You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,12 @@ All Notable changes to `Env` will be documented in this file
4
4
5
5
## 1.1.0 - 2016-01-05
6
6
### Added
7
-
- Support for parameter expansions: (default value)[http://wiki.bash-hackers.org/syntax/pe#use_a_default_value] and (assign default value)[http://wiki.bash-hackers.org/syntax/pe#assign_a_default_value]
7
+
- Support for parameter expansions: [default value](http://wiki.bash-hackers.org/syntax/pe#use_a_default_value) and [assign default value](http://wiki.bash-hackers.org/syntax/pe#assign_a_default_value)
Copy file name to clipboardExpand all lines: README.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -214,7 +214,7 @@ TEST6 = ${TEST7:-bar}
214
214
TEST8 = ${TEST9-bar}
215
215
```
216
216
217
-
The default value parameter expansion syntax is `:-`, the explanation on the (bash-hackers wiki)[http://wiki.bash-hackers.org/syntax/pe#use_a_default_value]for this is:
217
+
The default value parameter expansion syntax is `:-`, the explanation on the [bash-hackers wiki](http://wiki.bash-hackers.org/syntax/pe#use_a_default_value)for this is:
218
218
> SYNTAX:
219
219
>
220
220
>`${PARAMETER:-WORD}`
@@ -238,7 +238,7 @@ TEST7 = ${TEST6:-bar} # TEST5 is set and empty so the value of TEST7 = bar
238
238
239
239
```
240
240
241
-
The assign default value parameter expansion is `:=`, the explanation on the (bash-hackers wiki)[http://wiki.bash-hackers.org/syntax/pe#assign_a_default_value]for this is:
241
+
The assign default value parameter expansion is `:=`, the explanation on the [bash-hackers wiki](http://wiki.bash-hackers.org/syntax/pe#assign_a_default_value)for this is:
0 commit comments