docs: update

This commit is contained in:
Dylan Araps
2020-02-15 16:08:42 +02:00
parent 55bce36ca7
commit 0403a47f48

View File

@@ -477,15 +477,15 @@ $ lines ~/.bashrc
This works by passing the output of the glob to the function and then counting the number of arguments.
**CAVEAT:** When the glob does not match anything (empty directory or no matching files) it is not expanded and the function returns `1`.
**Example Function:**
```sh
count() {
# Usage: count /path/to/dir/*
# count /path/to/dir/*/
printf '%s\n' "$#"
[ -e "$1" ] \
&& printf '%s\n' "$#" \
|| printf '%s\n' 0
}
```