diff options
| author | Zach DeCook <zachdecook@librem.one> | 2021-12-04 09:23:57 -0500 |
|---|---|---|
| committer | Zach DeCook <zachdecook@librem.one> | 2021-12-04 09:23:57 -0500 |
| commit | 7e4bb432537ffdf56a4b2abb03878b0009a4e4a9 (patch) | |
| tree | 5425a1ef03be5ee9b2a2b66c492aea7961b09999 | |
| parent | bfe452bf99903f55356744b8cad3047e1385ee46 (diff) | |
| download | swipeGuess-0.1.0.tar.gz | |
swipeGuess: allow case-insensitive matches v0.1.0
| -rwxr-xr-x | swipeGuess.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swipeGuess.sh b/swipeGuess.sh index cca152d..71e811d 100755 --- a/swipeGuess.sh +++ b/swipeGuess.sh @@ -26,7 +26,7 @@ query(){ query=$(swipeToQuery "$swipe") echo "query: $query" > /dev/stderr # -m 1: just give first result - grep -m 1 "$query" "$wordfile" + grep -i -m 1 "$query" "$wordfile" } while read -r line; do |
