docs: update

This commit is contained in:
Dylan Araps 2020-08-07 10:43:26 +03:00
parent efd8a9a233
commit e55cdf00ac
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 0 additions and 9 deletions

9
README
View File

@ -255,15 +255,6 @@ ________________________________________________________________________________
- If input doesn't follow this sequence, 'esc' is reset to '0'.
* There is no usage of '[' or 'test'.
Despite these being commonly provided as "shell builtins" (part of the shell),
a lot of shells still use the external utilities from the coreutils. All usage
of these has been replaced with 'case' as it is always a "shell keyword".
This is one of the approaches taken to reduce the need for anything external.
* Filename escaping works via looping over a string char by char.
I didn't think this was possible in POSIX shell until I needed to do this in