diff options
| author | Zach DeCook <zachdecook@librem.one> | 2022-12-01 18:24:42 -0500 |
|---|---|---|
| committer | Zach DeCook <zachdecook@librem.one> | 2022-12-01 18:24:42 -0500 |
| commit | 0185d383d699a4dddd9237be7e1866f709134d42 (patch) | |
| tree | 66855484bbae3ad07b2210b6a003dcb05a399498 | |
| parent | 9e9cef85c03800cce37055999f25fd6220f05772 (diff) | |
| download | swipeGuess-0.2.1.tar.gz | |
completelyTypeWord.sh: Use POSIX compliant substitution v0.2.1
| -rwxr-xr-x | completelyTypeWord.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/completelyTypeWord.sh b/completelyTypeWord.sh index de13a92..4c862c4 100755 --- a/completelyTypeWord.sh +++ b/completelyTypeWord.sh @@ -1,5 +1,5 @@ #!/bin/sh type=wtype while read -r word; do - test "${word:1}" && $type "${word:1}" + test "${word#?}" && $type "${word#?}" done |
