roster grep is case insensitive

This commit is contained in:
James Tomasino 2018-12-01 22:51:42 -05:00
parent 77a79a4db6
commit 7d86ed6d81
1 changed files with 1 additions and 1 deletions

View File

@ -22,5 +22,5 @@ if [ "$#" -ne 1 ]; then
elif [ "$1" = "count" ]; then
sort "$temp_roster" | awk 'FS="|" {print $1}' | uniq -c
else
sort "$temp_roster" | column -s "|" -t | grep "$*"
sort "$temp_roster" | column -s "|" -t | grep -i "$*"
fi