mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
13 lines
236 B
Bash
Executable file
13 lines
236 B
Bash
Executable file
#!/bin/csh
|
|
#
|
|
# Script to summarize loopstats files
|
|
#
|
|
set x = `ls loopstats.*`
|
|
foreach dayfile ( $x )
|
|
if ($dayfile == $x[$#x]) continue
|
|
echo " "
|
|
echo $dayfile
|
|
awk -f loop.awk $dayfile
|
|
rm -f $dayfile
|
|
end
|
|
|