8 lines
221 B
Bash
8 lines
221 B
Bash
export GREP_VERSION=3.12
|
|
|
|
IFS='.' read -r GREP_VERSION_MAJOR GREP_VERSION_MINOR <<< $GREP_VERSION
|
|
export GREP_VERSION_MAJOR GREP_VERSION_MINOR
|
|
|
|
export GREP_URL=https://mirror.ufs.ac.za/gnu/grep/grep-$GREP_VERSION.tar.xz
|
|
|