From 4ea5fe57c905c83db55dfb9b75d922a36e387bc7 Mon Sep 17 00:00:00 2001 From: Eivind Uggedal Date: Sun, 14 Apr 2019 22:31:38 +0200 Subject: [PATCH] utilities.bash: fix tiny typo --- lib/utilities.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utilities.bash b/lib/utilities.bash index d7cf6f3f..dbefbc27 100644 --- a/lib/utilities.bash +++ b/lib/utilities.bash @@ -86,7 +86,7 @@ _bash-it-array-dedup() { echo "$*" | tr ' ' '\n' | sort -u | tr '\n' ' ' } -# Outputs a full path of the gre found on the filesystem +# Outputs a full path of the grep found on the filesystem _bash-it-grep() { if [[ -z "${BASH_IT_GREP}" ]] ; then export BASH_IT_GREP="$(which egrep || which grep || '/usr/bin/grep')"