From 5a50577a77e5fc03099475ca5ffe3122659ab54c Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sat, 17 Sep 2022 10:28:34 -0400 Subject: [PATCH] showing more lines of history now previous print out was anemic. --- scripts/system/find_dhcp_unassigned.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/system/find_dhcp_unassigned.sh b/scripts/system/find_dhcp_unassigned.sh index b8b6179a..99cd810a 100644 --- a/scripts/system/find_dhcp_unassigned.sh +++ b/scripts/system/find_dhcp_unassigned.sh @@ -8,5 +8,5 @@ if [ ! -s "$logfile" ]; then # a simple fail over that's not guaranteed to work. logfile="/var/log/syslog" fi -tail -n 2000 "$logfile" | grep -i "dhcp.*2[4-5][0-9]" | less +tail -n 10000 "$logfile" | grep -i "dhcp.*2[4-5][0-9]" | less -- 2.34.1