Commit 2bd67da0 authored by Vitaly Lipatov's avatar Vitaly Lipatov

eget: fix ? in sed

parent b227e2e2
......@@ -44,7 +44,7 @@ fatal()
filter_glob()
{
# translate glob to regexp
grep "^$(echo "$1" | sed -e "s|\*|.*|g" -e "s|\?|.|g")$"
grep "^$(echo "$1" | sed -e "s|\*|.*|g" -e "s|?|.|g")$"
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment