fix(lib/grep): fix quoting

This commit is contained in:
Koichi Murase 2024-08-13 17:33:35 +09:00
parent 6c73077fa4
commit 382ecf151f

View File

@ -2,7 +2,7 @@
# is x grep argument available?
function _omb_grep_flag_available {
echo | grep $1 "" >/dev/null 2>&1
echo | grep "$1" "" >/dev/null 2>&1
}
_omb_grep_options=()