Bash: remove horiz scrollbars

This commit is contained in:
Rico Sta. Cruz 2017-08-29 03:59:31 +08:00
parent 34824fe8ee
commit 1c6fcf9968
No known key found for this signature in database
GPG Key ID: CAAD38AE2962619A
1 changed files with 3 additions and 3 deletions

View File

@ -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