Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
'while read line ... < /file' is very slow with dash, because it reads character by character. The change here is to change config_check to incur the cost of a single 'grep' fork. That way, grep is able to do the matching. Grep is much faster than dash (or bash) at filtering the non-matching lines. LP: #2030729
- Loading branch information