From eb51cfcdb30999e38da0b52bfd2fb1d43ff8622f Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 14 Jun 2018 14:20:11 +1000 Subject: [PATCH] docs: update --- README.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4001ab4..7779818 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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: