Merge branch 'master' of github.com:dylanaraps/pure-bash-bible

This commit is contained in:
Dylan Araps 2019-09-19 10:46:38 +03:00
commit fd90d0bdd0
1 changed files with 2 additions and 2 deletions

View File

@ -1910,8 +1910,8 @@ Surprisingly, `sleep` is an external command and not a `bash` built-in.
```sh
read_sleep() {
# Usage: sleep 1
# sleep 0.2
# Usage: read_sleep 1
# read_sleep 0.2
read -rt "$1" <> <(:) || :
}
```