Skip to content

Commit

Permalink
egrep -> grep -E
Browse files Browse the repository at this point in the history
  • Loading branch information
pschmitt committed Mar 30, 2023
1 parent 7b0fb4d commit 8a4678b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion za-readurl-preinit-handler
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ za-readurl-preinit-handler() {
}
}
local -a list
list=(${(@f)"$(noglob command egrep -io "href=.?$cur_paturl" $tmpfile)"})
list=(${(@f)"$(noglob command grep -E -io "href=.?$cur_paturl" $tmpfile)"})
if ((sorts[index])); then
list=(${list[@]:#[^[:digit:]]##})
list=(${(On)list[@]})
Expand Down

0 comments on commit 8a4678b

Please sign in to comment.