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