fix: check installed grep is GNU variant

This commit is contained in:
Ming Di Leom 2023-05-20 11:10:16 +00:00
parent 5a6957f134
commit 23a1376170
No known key found for this signature in database
GPG Key ID: 32D3E28E96A695E8
1 changed files with 17 additions and 7 deletions

View File

@ -13,17 +13,27 @@ alias curl="curl -L"
alias mkdir="mkdir -p"
alias rm="rm -rf"
## Use GNU grep, busybox grep is too slow
## Use GNU grep, busybox grep is not as performant
. "/etc/os-release"
DISTRO="$ID"
if [ -z "$(grep --help | grep 'GNU')" ]; then
if [ "$DISTRO" = "alpine" ]; then
echo "Please install GNU grep 'apk add grep'"
exit 1
check_grep() {
if [ -z "$(grep --help | grep 'GNU')" ]; then
if [ -x "/usr/bin/grep" ]; then
echo "grep found. try alias"
alias grep="/usr/bin/grep"
check_grep
else
if [ "$DISTRO" = "alpine" ]; then
echo "Please install GNU grep 'apk add grep'"
else
echo "GNU grep not found"
fi
exit 1
fi
fi
alias grep="/usr/bin/grep"
fi
}
check_grep
## Fallback to busybox dos2unix