Merge pull request #1365 from uggedal/patch-1

utilities.bash: fix tiny typo in comment
pull/1366/head
Nils Winkler 2019-04-16 08:49:19 +02:00 committed by GitHub
commit 5ce443759f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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')"