We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23bbf6d commit 526918bCopy full SHA for 526918b
wait-for
@@ -59,10 +59,25 @@ do
59
QUIET=1
60
shift 1
61
;;
62
- -t)
+ -q-*)
63
+ QUIET=0
64
+ echoerr "Unknown option: $1"
65
+ usage 1
66
+ ;;
67
+ -q*)
68
+ QUIET=1
69
+ result=$1
70
+ shift 1
71
+ set -- -"${result#-q}" "$@"
72
73
+ -t | --timeout)
74
TIMEOUT="$2"
75
shift 2
76
77
+ -t*)
78
+ TIMEOUT="${1#-t}"
79
80
81
--timeout=*)
82
TIMEOUT="${1#*=}"
83
@@ -74,7 +89,13 @@ do
89
--help)
90
usage 0
91
92
+ -*)
93
94
95
96
97
*)
98
99
echoerr "Unknown argument: $1"
100
usage 1
101
0 commit comments