Bash: remove horiz scrollbars
This commit is contained in:
parent
34824fe8ee
commit
1c6fcf9968
6
bash.md
6
bash.md
|
@ -110,9 +110,9 @@ Parameter expansions
|
||||||
```bash
|
```bash
|
||||||
name="John"
|
name="John"
|
||||||
echo ${name}
|
echo ${name}
|
||||||
echo ${name/J/j} #=> "john" (substitution)
|
echo ${name/J/j} #=> "john" (substitution)
|
||||||
echo ${name:0:2} #=> "jo" (slicing)
|
echo ${name:0:2} #=> "jo" (slicing)
|
||||||
echo ${food:-Cake} #=> $food or "Cake"
|
echo ${food:-Cake} #=> $food or "Cake"
|
||||||
```
|
```
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
Loading…
Reference in New Issue