docs: update

This commit is contained in:
Dylan Araps 2018-06-14 14:20:11 +10:00
parent cf43c8d16b
commit eb51cfcdb3
1 changed files with 13 additions and 2 deletions

View File

@ -71,7 +71,8 @@ scripts and not full blown utilities.
* [Simpler `case` statement to set variable.](#simpler-case-statement-to-set-variable)
* [Miscellaneous](#miscellaneous)
* [Get the current date using `strftime`.](#get-the-current-date-using-strftime)
* [Bypass shell aliases and functions.](#bypass-shell-aliases-and-functions)
* [Bypass shell aliases.](#bypass-shell-aliases)
* [Bypass shell functions.](#bypass-shell-functions)
* [Internal Variables](#internal-variables)
<!-- vim-markdown-toc -->
@ -592,7 +593,7 @@ printf '%(%a %d %b - %l:%M %p)T\n'
printf -v date '%(%a %d %b - %l:%M %p)T\n'
```
### Bypass shell aliases and functions.
### Bypass shell aliases.
```sh
# alias
@ -602,6 +603,16 @@ ls
\ls
```
### Bypass shell functions.
```sh
# function
ls
# command
command ls
```
## Internal Variables
This will most likely be expanded here. In the meantime, see: