Removed cat where we don't need it

This commit is contained in:
DL6ER 2016-12-22 18:55:14 +01:00
parent 9b0390c9da
commit bcf8139708
No known key found for this signature in database
GPG key ID: 00135ACBD90B28DD

View file

@ -33,7 +33,7 @@ CalcBlockedDomains() {
CalcQueriesToday() { CalcQueriesToday() {
if [ -e "${piLog}" ]; then if [ -e "${piLog}" ]; then
queriesToday=$(cat "${piLog}" | awk '/query/ {print $6}' | wc -l) queriesToday=$(awk '/query/ {print $6}' < "${piLog}" | wc -l)
else else
queriesToday="Err." queriesToday="Err."
fi fi
@ -41,7 +41,7 @@ CalcQueriesToday() {
CalcblockedToday() { CalcblockedToday() {
if [ -e "${piLog}" ] && [ -e "${gravity}" ];then if [ -e "${piLog}" ] && [ -e "${gravity}" ];then
blockedToday=$(cat ${piLog} | awk '/\/etc\/pihole\/gravity.list/ && !/address/ {print $6}' | wc -l) blockedToday=$(awk '/\/etc\/pihole\/gravity.list/ && !/address/ {print $6}' < "${piLog}" | wc -l)
else else
blockedToday="Err." blockedToday="Err."
fi fi