| commit | 7f54e32737dfd4368a62fe0e146b9ad77f7ad061 | [log] [tgz] |
|---|---|---|
| author | Eli Young <elyscape@gmail.com> | Thu Oct 06 11:49:59 2016 -0700 |
| committer | Eli Young <elyscape@gmail.com> | Thu Oct 06 12:00:19 2016 -0700 |
| tree | 1291187216ec08287e14cffa754230b930d7c064 | |
| parent | 9cfc6976e655756ea35c702bcad313e0489d0754 [diff] |
Fix weekly version regular expression grep -P supports the \d character class but grep -E does not. grep -E only supports [[:digit:]]. I used [0-9] because it's shorter. I also switched to using egrep, keeping in line with other scripts in the repo.