mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
Merge pull request #1687 from spacedingo/patch-2
Add ignore-case switch to sort (domains)
This commit is contained in:
commit
ca88c59d4e
1 changed files with 1 additions and 1 deletions
|
@ -296,7 +296,7 @@ gravity_unique() {
|
|||
local str="Removing duplicate domains"
|
||||
echo -ne " ${INFO} ${str}..."
|
||||
|
||||
sort -u ${piholeDir}/${supernova} > ${piholeDir}/${preEventHorizon}
|
||||
sort -u -f ${piholeDir}/${supernova} > ${piholeDir}/${preEventHorizon}
|
||||
|
||||
echo -e "${OVER} ${TICK} ${str}"
|
||||
numberOf=$(wc -l < ${piholeDir}/${preEventHorizon})
|
||||
|
|
Loading…
Reference in a new issue