Fix backslash in ''

Would create a directory with a backslash (0x5c), and a space (0x20) in
the name instead of just a space (0x20).
This commit is contained in:
Dan Church 2021-04-09 10:26:38 -05:00
parent 8f87e8f25b
commit f5f68e1528
No known key found for this signature in database
GPG Key ID: EA2BF379CD2CDBD0

View File

@ -160,7 +160,7 @@ $ > 'new file' # note: erases the content if it already exists
```shell
$ mkdir 'untitled folder'
# or
$ mkdir -p 'path/may/not/exist/untitled\ folder'
$ mkdir -p 'path/may/not/exist/untitled folder'
```
## show file/directory size