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
|
||||
name="John"
|
||||
echo ${name}
|
||||
echo ${name/J/j} #=> "john" (substitution)
|
||||
echo ${name:0:2} #=> "jo" (slicing)
|
||||
echo ${food:-Cake} #=> $food or "Cake"
|
||||
echo ${name/J/j} #=> "john" (substitution)
|
||||
echo ${name:0:2} #=> "jo" (slicing)
|
||||
echo ${food:-Cake} #=> $food or "Cake"
|
||||
```
|
||||
|
||||
```bash
|
||||
|
|
Loading…
Reference in New Issue