Update
This commit is contained in:
parent
484373521c
commit
1d60548f99
3
sh.md
3
sh.md
|
@ -158,8 +158,9 @@ DIR=${SRC%$BASE} #=> "/path/to" (dirpath)
|
||||||
| --- | --- |
|
| --- | --- |
|
||||||
| `${FOO/from/to}` | Replace first match |
|
| `${FOO/from/to}` | Replace first match |
|
||||||
| `${FOO//from/to}` | Replace all |
|
| `${FOO//from/to}` | Replace all |
|
||||||
| `${FOO/#from/to}` | Replace prefix |
|
| --- | --- |
|
||||||
| `${FOO/%from/to}` | Replace suffix |
|
| `${FOO/%from/to}` | Replace suffix |
|
||||||
|
| `${FOO/#from/to}` | Replace prefix |
|
||||||
|
|
||||||
### Substrings
|
### Substrings
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue