diff options
author | EuAndreh <eu@euandre.org> | 2022-10-21 18:54:49 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-21 18:54:49 -0300 |
commit | 8da93bea02daea1f849b682c2eddcc97c467236f (patch) | |
tree | aa0b430a743696057f8610bc039ac589602decfd | |
parent | bin/vcs: Don't wait more than 5 minutes for CVS locks (diff) | |
download | dotfiles-8da93bea02daea1f849b682c2eddcc97c467236f.tar.gz dotfiles-8da93bea02daea1f849b682c2eddcc97c467236f.tar.xz |
bin/untill: Change default wait from 60 seconds to 5 seconds
-rwxr-xr-x | bin/untill | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,7 +14,7 @@ help() { Options: -n SECONDS the amount of seconds to sleep between - attempts (default: 60) + attempts (default: 5) -h, --help show this message @@ -52,7 +52,7 @@ for flag in "$@"; do esac done -_SECONDS=60 +_SECONDS=5 while getopts 'n:h' flag; do case "$flag" in n) |